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
Seems like md_in_html subclasses from the new HTML parser, but overrides start tag handling. What it forgets to do is flag whether the content is "raw HTML" as that logic is in the overridden base element's start tag logic.
Doing a quick and dirty patch to add this flagging of "raw HTML" logic to md_in_html, we get the expected results:
Which gives:
'<div>\n<div>\n<img src="" />\n<code>Test</code>\n<p>Test 2</p>\n</div>\n</div>'
When I'd expect to get
'<div>\n<div>\n<img src="" />\n<code>Test</code>\n<p>Test 2</p>\n</div>\n</div>'
.Happens with 3.3, 3.3.1.
The text was updated successfully, but these errors were encountered: