Hey,
I’m trying to add some HTML into the body of the .md
file in a blog post, but the html always appears literally (tags and all, like it was preformatted) on the page. Inspection revealed it gets wrapped into <p>
blocks, like very other paragraph.
E.g, this:
Blablabla blablabla
Some html content
Blablablablabla
where “tag” is a placeholder for any generic html tag, it becomes
<p>Blablabla blablabla</p>
<p><tag>Some html content</tag></p>
<p>Blablablablabla</p>
AFAIK it’s supposed to work, but it just doesn’t. Markdown extra is enabled.
Any ideas?