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
This test is failing:
def test_rewrite_css2(no_js_notify): output = ( HtmlRewriter( ArticleUrlRewriter(HttpUrl("http://kiwix.org/"), set()), "", "", no_js_notify, ) .rewrite( r'<style>.test { content="\e123" }</style>', ) .content ) assert output == r'<style>.test { content="\e123" }</style>'
Looks like "\e123" is interpreted somehow by the parser.
"\e123"
This is encountered in the wild on https://geo.libretexts.org/Courses/Coastline_College/An_Introduction_To_Geology_-_Coastline_College/01%3A_Understanding_Science/1.01%3A_What_is_Science where we have such inline CSS.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This test is failing:
Looks like
"\e123"
is interpreted somehow by the parser.This is encountered in the wild on https://geo.libretexts.org/Courses/Coastline_College/An_Introduction_To_Geology_-_Coastline_College/01%3A_Understanding_Science/1.01%3A_What_is_Science where we have such inline CSS.
The text was updated successfully, but these errors were encountered: