This patch will allow block sequences on the same level as the parent mapping,
like:
x:
- a
- b
y: z
Both YAML 1.1 and 1.2 allow zero indented sequences.
There are people who insist that the Spec is inconsistent, and modules
which produce zero indented sequences are broken.
So here are some quotes from the 1.2 spec which is similar to 1.1:
Since people perceive the “-” indicator as indentation, nested block sequences
may be indented by one less space to compensate, except, of course, if nested
inside another block sequence (block-out context vs. block-in context).
This patch will allow block sequences on the same level as the parent mapping, like:
Both YAML 1.1 and 1.2 allow zero indented sequences.
There are people who insist that the Spec is inconsistent, and modules which produce zero indented sequences are broken.
So here are some quotes from the 1.2 spec which is similar to 1.1:
Fixes:
92
80
Related:
This will increase interoperability with YAML::XS and other processors.