YAML is easier to read than angle brackets
- “YAML with schema would be semantic equivalent of XML, and much easier to read, parser (sic) , and understand.” — XML Sucks wiki.c2.com
- “YAML uses indentation to define the structured data. So the each block in the YAML is differentiated by the number of white spaces.”
fold_some_newlines: >
a
b
c
d
e
f
Is the same as:
a b\nc d\n e\nf\n