We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, in order to allow commentaries parsing I have added the following lines after ln 270:
271: else 272: if( S[ 1 ] == '!' ) { 273: if( !xt_skip_until( &S, WHITESPACE "/>" ) ) 274: goto fnq; 275: }
With this change the parser can parse the following XML without problems:
<object class="GtkTreeStore" id="treestore1"> <columns> <!-- column-name name1 --> <column type="name"/> <!-- column-name string1 --> <column type="string"/> </columns> </object> Thanks again for this parser!!
<object class="GtkTreeStore" id="treestore1"> <columns> <!-- column-name name1 --> <column type="name"/> <!-- column-name string1 --> <column type="string"/> </columns> </object>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello, in order to allow commentaries parsing I have added the following lines after ln 270:
271: else
272: if( S[ 1 ] == '!' ) {
273: if( !xt_skip_until( &S, WHITESPACE "/>" ) )
274: goto fnq;
275: }
With this change the parser can parse the following XML without problems:
<object class="GtkTreeStore" id="treestore1"> <columns> <!-- column-name name1 --> <column type="name"/> <!-- column-name string1 --> <column type="string"/> </columns> </object>
Thanks again for this parser!!
The text was updated successfully, but these errors were encountered: