Inline comment (hash space)
#
Start of Document; multiple documents are supported ( 3 hyphens )
---
End of Document (optional); multiple documents are supported ( 3 periods )
...
Indented Lists (hyphen space)
- Item #1
- Item #2
- Item #3
Inline Lists 'comma separated list items surrounded by square braces'
[ Item #1,Item #2,Item #3 ]
Indented Associative Array (KEY colon space VALUE)
name: Dylan
age: 24
Inline Associative Array ( curlyBrace commaSeparated ( KEY colon space VALUE )+ curlyBrace )
{ name: Dylan, age: 24 }
Preserve newlines (use | )
stringWithEmbeddedNewlines: |
First line
Second Line
Third Line
Fold newlines into single line ( use > )
stringWithFoldedNewlines: >
First line
Second Line
Third Line