We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following should have the same value:
binary: !!binary AAAAA
binary: !!binary | AAAAA
However, when parsed, the latter value has a '\n' appended to the end of it:
'\n'
#include <cassert> #include <cstdlib> #include <string> #include "yaml-cpp/yaml.h" int main(int argc, char** argv) { YAML::Node n0 = YAML::Load(R"( binary: !!binary AAAAA )"); assert(n0["binary"].as<std::string>() == "AAAAA"); YAML::Node n1 = YAML::Load(R"( binary: !!binary | AAAAA )"); assert(n1["binary"].as<std::string>() == "AAAAA\n"); return EXIT_SUCCESS; }
@jbeder Is this a bug?
The text was updated successfully, but these errors were encountered:
Not sure. Can you take a look at the Literal spec? It's possible it adds a new line in that example.
Sorry, something went wrong.
Here is the section of the spec regarding Literal Style: https://yaml.org/spec/1.2.2/#812-literal-style
I am not familiar with the syntax and format of the spec, but it does mention "final line breaks and trailing empty lines are chomped."
No branches or pull requests
The following should have the same value:
However, when parsed, the latter value has a
'\n'
appended to the end of it:@jbeder Is this a bug?
The text was updated successfully, but these errors were encountered: