I have a multi-line string whose first line is indented, but subsequent lines are not. How do I represent this in YAML?
      12    24
30    60    53
36    66    59
YAML sees the de-dentation and considers it the end of the string.
Here's one way I could do it. But it would be nice if I could more easily cut-and-paste the values without modifying the string so much.
"      12    24\n\
\30    60    53\n\
\36    66    59"
 
     
    