38 lines
651 B
Text
38 lines
651 B
Text
# comment
|
|
#
|
|
# indented comment
|
|
|
|
dict:
|
|
key1: dict-like: value
|
|
key2: - list-like value
|
|
key3: > str-like value
|
|
key4: no trailing whitespace
|
|
key5: trailing whitespace
|
|
|
|
: key:
|
|
> key with terminal colon: value
|
|
: - key
|
|
> key with leading -: value
|
|
empty:
|
|
a: single character key
|
|
b: another single character key
|
|
c: yet another single character key
|
|
|
|
list:
|
|
- dict-like: value
|
|
- - list-like value
|
|
- > str-like value
|
|
- no trailing whitespace
|
|
- trailing whitespace
|
|
|
|
empty list:
|
|
-
|
|
|
|
string:
|
|
> dict-like: value
|
|
> - list-like value
|
|
> > str-like value
|
|
> no trailing whitespace
|
|
> trailing whitespace
|
|
>
|
|
|