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
Currently the following fragment
<!-- foo > -->
is incorrectly parsed as
Event::Comment, Event::Text("-->")
rather than the correct
Event::Comment
This happens because the following code allows Comments to end with a simple > instead of requiring -->:
Comment
>
-->
svg/src/parser/mod.rs
Lines 72 to 82 in f945795
The text was updated successfully, but these errors were encountered:
Thanks for reporting! Do you have time to review #29?
Sorry, something went wrong.
Sorry I didn't get the chance to look at the PR— thanks for fixing!
Successfully merging a pull request may close this issue.
Currently the following fragment
<!-- foo > -->
is incorrectly parsed as
rather than the correct
This happens because the following code allows
Comment
s to end with a simple>
instead of requiring-->
:svg/src/parser/mod.rs
Lines 72 to 82 in f945795
The text was updated successfully, but these errors were encountered: