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
Hi, I find the case that
When the tag is <img></img>: tomd.convert('''<p><img src="https://github.com" class="dsad"></img></p>''')
the parsed result is \n![](https://github.com)\n, which is what I expect,
But, when the tag is <img />: tomd.convert('''<p><img src="https://github.com" class="dsad"/></p>''')
the result is: \n<img src=\"https://github.com\" class=\"dsad\"/>\n, so it seems that the self contained tag cannot be parsed.
Can we repair it?
The text was updated successfully, but these errors were encountered:
Hi, I find the case that
When the tag is
<img></img>
:tomd.convert('''<p><img src="https://github.com" class="dsad"></img></p>''')
the parsed result is
\n![](https://github.com)\n
, which is what I expect,But, when the tag is
<img />
:tomd.convert('''<p><img src="https://github.com" class="dsad"/></p>''')
the result is:
\n<img src=\"https://github.com\" class=\"dsad\"/>\n
, so it seems that the self contained tag cannot be parsed.Can we repair it?
The text was updated successfully, but these errors were encountered: