Scanner.cs:2148 checks for tag.Length == 0, but it incorrectly throws an exception with the following valid YAML:
formats: default: ! '%d-%m-%Y' long: ! '%d %B, %Y' short: ! '%d %b'
Also see here: http://stackoverflow.com/questions/9664113/what-does-a-single-exclamation-mark-do-in-yaml
Commenting out the "if" block removes the error, but I have no idea about its consequences on the rest of the parser.
Log in to post a comment.
Also see here: http://stackoverflow.com/questions/9664113/what-does-a-single-exclamation-mark-do-in-yaml
Commenting out the "if" block removes the error, but I have no idea about its consequences on the rest of the parser.