-
Hi, Many thanks for the excellent library. I have a YAML document that I need to modify and later use toString to get the YAML representation. However for the following
after toString
Is it expected? or is there an option that I can use to remove the extra blank line? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
In YAML, a double-quoted string needs to use |
Beta Was this translation helpful? Give feedback.
-
Thank you!
should result in: `name: me Is it good?"` Is my understanding right? |
Beta Was this translation helpful? Give feedback.
In YAML, a double-quoted string needs to use
\n\n
to represent a newline, as a single\n
would effectively get parsed as a space.