The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
=== basic multiline
# This is just a simple one key hash.
--- yaml
a: |
   ciao
   a tutti
--- json
{"a":"ciao\na tutti\n"}

=== multiline with inner indentation
# This is just a simple one key hash.
--- yaml
a: |
   ciao
         a
   tutti
--- json
{"a":"ciao\n      a\ntutti\n"}

=== two multilines with variable inner indentation
# This is just a simple one key hash.
--- yaml
- |
   ciao
         a
      tutti
- |
      quanti
         voi
      amici
--- json
["ciao\n      a\n   tutti\n","quanti\n   voi\namici\n"]