When I try to parse example 8.2 at http://www.yaml.org/spec/1.2/spec.html#Block I got: ``` [ 'detected\n', '\n\n# detected\n', '\n explicit\n', '\n\t\ndetected\n' ] ``` But according to the canonical form last two lines must not get a leading '\n': ``` %YAML 1.2 --- !!seq [ !!str "detected\n", !!str "\n\n# detected\n", !!str "·explicit\n", !!str "\t·detected\n", ] ```
When I try to parse example 8.2 at http://www.yaml.org/spec/1.2/spec.html#Block
I got:
But according to the canonical form last two lines must not get a leading '\n':