``` yaml test: |- Hello world ``` should be convert to ``` json { "test": "\n\nHello\nworld" } ``` not ``` json { "test": "Hello\nworld" } ``` It seems 2.x is ok, but 3.x is break.
should be convert to
{ "test": "\n\nHello\nworld" }not
{ "test": "Hello\nworld" }It seems 2.x is ok, but 3.x is break.