Failure parsing nested implicit mappings
Status: Pre-Alpha
Brought to you by:
iemand14
The following line, generated by PyYAML, is not parsed correctly:
foo: {bar: 123}
Node.Parse(str).Write() results in the following string:
'? foo\n: \n'
This is clearly incorrect.
'{bar: 123}' is parsed correctly on its own.
The following also do not parse in yaml-net-parser, but are handled by PyYAML:
'? foo\n: {bar: 123}'
'{foo: {bar: 123} }'