Closed
Description
Using the following YAML:
foo:
bar: [foo]bar
Parsing it the YAML component produces this result:
array('foo' => array('bar' => array('foo')))
and the bar
part is lost.
However, when trying to parse it on YAML Lint produces a syntax error.
The syntax error is a better behavior IMO as the expected result in such case is probably a string '[foo]bar'
for which the quoting has been forgotten.