Is there a way to force the formatted yaml to not have \n sequences in the strings?
e.g.
Input:
foo: "First line.\nSecond line.\n"
Desired output:
foo: |
First line.
Second line.
The content of the string itself has not changed, if I am not mistaken.
Is there a way to force the formatted yaml to not have
\nsequences in the strings?e.g.
Input:
Desired output:
The content of the string itself has not changed, if I am not mistaken.