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
... <title>&中文</title> ...
panicked at svgr-rs/src/hast_to_swc_ast/decode_xml.rs:60:21: byte index 6 is not a char boundary; it is inside '文' (bytes 5..8) of `x&中文`
we don't have to escape by hand, use the crate html-escape
will be fixed in pr #1444
The text was updated successfully, but these errors were encountered:
the root cause is below svgr-rs
&中文
as_bytes()
&
byte index 6 is not a char boundary
IMO, the best way to solve the problem is , swc_xml_parser un-escaping the text children of html
Sorry, something went wrong.
besides this problem, Mako should put compile() in a catch_unwind in case this problem, node process should get an error other than process abort.
compile()
@stormslowly I have published version 0.2.0 to incorporate your PR.
stormslowly
No branches or pull requests
problem
solution
we don't have to escape by hand, use the crate html-escape
will be fixed in pr #1444
The text was updated successfully, but these errors were encountered: