remarkable
remarkable copied to clipboard
Markdown Content within HTML tags is not rendered
For example,
<div align=right> **Should be bold**</div>
is rendered as
**Should be bold**
instead of
Should be bold
.
It seems that **Should be bold** is not interpreted.
Is there a way to support rendering within HTML tags?
This problem is from https://github.com/shd101wyy/markdown-preview-enhanced/issues/40#issuecomment-223734228
Thank you very much
Noticed the same thing today. Would be very useful if there was a way of this working.
as far as I know that's intended behavior. The content of an HTML tag is text, not Markdwon. None of the markdown parsers I've worked with will produce the result you want.
What happens if you escape the brackets (< and >) in the HTML to convert the tags into text as well?