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
std::string line1 = "test:\n"; std::string line2 = "- {a: 1}\n"; std::string line3 = "- {b: 2} \n"; //fails std::string line4 = "- [0, {c: 3}] \n"; //also fails std::string yaml = line1 + line2 + line3 + line4; ryml::Tree tree = ryml::parse_in_arena(ryml::to_csubstr(yaml));
When a flow-style line contains trailing spaces, parsing fails.
The text was updated successfully, but these errors were encountered:
block containers: fix parsing of trailing whitespace
c8f96fe
re #475
17000de
Successfully merging a pull request may close this issue.
When a flow-style line contains trailing spaces, parsing fails.
The text was updated successfully, but these errors were encountered: