We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f6952a commit a858b82Copy full SHA for a858b82
src/el_before_after.cpp
@@ -85,7 +85,7 @@ void litehtml::el_before_after_base::add_text( const string& txt )
85
for(auto chr : txt)
86
{
87
if(chr == '\\' ||
88
- !esc.empty() && esc.length() < 5 && (chr >= '0' && chr <= '9' || chr >= 'A' && chr <= 'Z' || chr >= 'z' && chr <= 'z'))
+ !esc.empty() && esc.length() < 5 && (chr >= '0' && chr <= '9' || chr >= 'A' && chr <= 'Z' || chr >= 'a' && chr <= 'z'))
89
90
if(!esc.empty() && chr == '\\')
91
test/render/-table-3-width.htm test/render/table-3-width.htmtest/render/-table-3-width.htm renamed to test/render/table-3-width.htm
0 commit comments