mistune
mistune copied to clipboard
Raw Html content is unescaped.
<small>I am a kaomoji \(≥ω≤)/</small> -> <small>I am a kaomoji \(≥ω≤)/</small> -> <small>I am a kaomoji (≥ω≤)/</small> Backslash \ is removed as an escape char.But it expect a normal char in raw html.
I can not understand the issue. Can you provide a demo to reproduce the issue? Like this:
import mistune
text = 'your input text'
result = mistune.html(text)
The expected result is:
your expected html
But I got:
the actual html