remarkable icon indicating copy to clipboard operation
remarkable copied to clipboard

Markdown Content within HTML tags is not rendered

Open shd101wyy opened this issue 9 years ago • 2 comments

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

shd101wyy avatar Jun 04 '16 03:06 shd101wyy

Noticed the same thing today. Would be very useful if there was a way of this working.

alexwhitman avatar Dec 08 '16 16:12 alexwhitman

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?

caraya avatar Jan 27 '17 18:01 caraya