You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some html entities (such as sup1, sup2) are not unescaped correctly by Entities.unescape because they contain digits.
The problem is the pattern Entities.unescapePattern. I changed it to '&(#(x|X)?([0-9a-fA-F]+)|[0-9a-zA-Z]+);?', and it worked fine for me. But there might be side effects ...
Some html entities (such as sup1, sup2) are not unescaped correctly by Entities.unescape because they contain digits.
The problem is the pattern Entities.unescapePattern. I changed it to '&(#(x|X)?([0-9a-fA-F]+)|[0-9a-zA-Z]+);?', and it worked fine for me. But there might be side effects ...
You can see my changes here : clementdenis@d65387c
The text was updated successfully, but these errors were encountered: