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
When doing something like this:
ryml::Tree tree; ryml::NodeRef wroot = tree.rootref(); wroot |= ryml::MAP; wroot["name"] << "@test"; ryml::emit_yaml(wroot, stdout)
The output is
name: @test
while it is expected to be
name: '@test'
since "reserved indicators can't start a plain scalar."
I'm aware that ryml tends to be more permissive but in this case the generated output cannot be parsed by other standard compliant parsers.
Reference: https://yaml.org/spec/1.2.2/#57-escaped-characters, example 5.10
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
When doing something like this:
The output is
while it is expected to be
since "reserved indicators can't start a plain scalar."
I'm aware that ryml tends to be more permissive but in this case the generated output
cannot be parsed by other standard compliant parsers.
Reference: https://yaml.org/spec/1.2.2/#57-escaped-characters, example 5.10
The text was updated successfully, but these errors were encountered: