Blame | Last modification | View Log | Download
--- %YAML:1.0test: Some characters at the beginning of a string must be escapedbrief: >Some characters at the beginning of a string must be escapedyaml: |foo: '| bar'php: |array('foo' => '| bar')---test: A key can be a quoted stringbrief: >A key can be a quoted stringyaml: |"foo1": bar'foo2': bar"foo \" bar": bar'foo '' bar': bar'foo3: ': bar"foo4: ": barfoo5: { "foo \" bar: ": bar, 'foo '' bar: ': bar }php: |array('foo1' => 'bar','foo2' => 'bar','foo " bar' => 'bar','foo \' bar' => 'bar','foo3: ' => 'bar','foo4: ' => 'bar','foo5' => array('foo " bar: ' => 'bar','foo \' bar: ' => 'bar',),)