xxxxxxxxxx
>>> import yaml
>>> yaml.load("""
|
This is a multi-line
literal style scalar.
""")
'This is a multi-line\nliteral style scalar.\n'
>>> yaml.load("""
>
This is a multi-line
folded scalar; new lines are folded into
spaces.
""")
'This is a multi-line folded scalar; new lines are folded into spaces.\n'