mustangostang / spyc

A simple YAML loader/dumper class for PHP
MIT License
701 stars 207 forks source link

Result string contains quotes in line with comment #8

Closed whitegem closed 11 years ago

whitegem commented 11 years ago

The following yaml:

Foo: 'bar' #Comment

will return

array("foo" => "'bar'")

instead of

array("foo" => "bar")

but without #comment in yaml file, it works perfectly.