-
-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
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
Implicit map keys need to be followed by map values #120
Implicit map keys need to be followed by map values #120
Comments
I'm pretty sure that this was indeed a bug in the CST parser. Specifically, it was only terminating a plain-value node at a // before
YAML.parse('a:') // 'a:'
// after
YAML.parse('a:') // { a: null }
// unchanged
YAML.parse('a:\n') // { a: null } The specific spec construct that's being handled here is
I'd missed the final step there, which allows for |
@eemeli can you make a release ? |
Error:
Ok:
The error appears only if the very last character is
:
I'm not so sure it should be?
https://repl.it/@MikeWild/MammothFortunateDatamining
Yaml v 1.6.0
The text was updated successfully, but these errors were encountered: