yaml-cpp
yaml-cpp copied to clipboard
A YAML parser and emitter in C++
Hi, I am trying to emit an indented YAML file using emitter::Indent(x) but I get the output all in one line. Am I doing something wrong? I tried a workaround...
How am I suppsed to do to integrate yaml-cpp library into my project without having to include all the sources into a directory ? My objective is that when I...
When I `YAML::Load` a node with a local tag, the tag type and tag contents are not preserved. ## Minimal example I am using the 0.7.0 conan package. ```cpp auto...
I am having issues with YAML::Load(file_name) command. String parameters are being converted to something different ``` For example - type: "shelf" becomes - type: ! shelf ``` I am reading...
I build shared library with cmake by: ``` cmake -B build_v140_x64 -G "Visual Studio 14 2015" -A x64 -DYAML_BUILD_SHARED_LIBS=on -DYAML_CPP_BUILD_TESTS=off cmake --build build_v140_x64 --config Release ``` The demo yaml file...
Hi, Are you interested in releasing RPM files (and maybe DEB)? I have implemented everything on gitlab and can push it here if needed. https://gitlab.com/loikki/yaml-cpp-rpm Best regards,
In PyYAML there is a function which allows custom tag callbacks. Is this somehow supported with yaml-cpp? What I mean is: There is a way to register custom tag like:...
At the cost of exposing some existing detail, enable efficient unsharing of graph structure (DeepClone), and efficient ShallowClone. Modify[Key]Values allows in-place modification (or deletion) of node_data in a Map. (the...
How can I emit a std::filesystem::path? I was thinking of adding: ```c++ namespace std::filesystem { YAML::Emitter & operator