| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 | --- %YAML:1.0test: Unindented collectionbrief: >    Unindented collectionyaml: |    collection:    - item1    - item2    - item3php: |    ['collection' => ['item1', 'item2', 'item3']]---test: Nested unindented collection (two levels)brief: >    Nested unindented collectionyaml: |    collection:        key:        - a        - b        - cphp: |    ['collection' => ['key' => ['a', 'b', 'c']]]---test: Nested unindented collection (three levels)brief: >    Nested unindented collectionyaml: |    collection:        key:            subkey:            - one            - two            - threephp: |    ['collection' => ['key' => ['subkey' => ['one', 'two', 'three']]]]---test: Key/value after unindented collection (1)brief: >    Key/value after unindented collection (1)yaml: |    collection:        key:        - a        - b        - c    foo: barphp: |    ['collection' => ['key' => ['a', 'b', 'c']], 'foo' => 'bar']---test: Key/value after unindented collection (at the same level)brief: >    Key/value after unindented collectionyaml: |    collection:        key:        - a        - b        - c        foo: barphp: |    ['collection' => ['key' => ['a', 'b', 'c'], 'foo' => 'bar']]---test: Shortcut Key after unindented collectionbrief: >    Key/value after unindented collectionyaml: |    collection:    - key: foo      foo: barphp: |    ['collection' => [['key' => 'foo', 'foo' => 'bar']]]---test: Shortcut Key after unindented collection with custom spacesbrief: >    Key/value after unindented collectionyaml: |    collection:    -  key: foo       foo: barphp: |    ['collection' => [['key' => 'foo', 'foo' => 'bar']]]
 |