Subject: | Incorrect parsing of newlines |
This is the same as bug 19313 which I reported in JSON::Syck
perl -MYAML::Syck -le 'print YAML::Syck::Dump({a => "hello\nworld\n"})'
should produce:
---
a: "hello\nworld\n"
but instead produces
---
a: "hello\n\
world\n"
\n characters are being translated into a \n followed by a literal
newline and two spaces.