grame-cncm / libmusicxml

A C/C++ library to support the MusicXML format.
Mozilla Public License 2.0
152 stars 33 forks source link

XML Standard Comments are not parsed #39

Closed arshiacont closed 4 years ago

arshiacont commented 4 years ago

Comment of type <!-- This is a comment --> (standard XML comment format) are not parsed and lead to syntax error.

I believe this has something to do with the Bison parser definition.

See attached example.

A01-SOURCEQueen1.xml.zip

dfober commented 4 years ago

fixed (the parser was not expecting a comment between DOCTYPE and first element :-)

arshiacont commented 4 years ago

wonderful!!!