I have a Jekyll website, with Posts written in Markdown using the Kramdown parser.
I would like to add some raw HTML within the post. However when I try to add the HTML, it parses it as markdown (changing <
's to <
for example).
I have tried:
- Adding the HTML in its own paragraph.
- Including a
.html
file. - Adding
markdown="0"
to the HTML tag (also tried1
). - Indenting (and wrapping in triple back-tick) with all of the above.
- Using raw tags
Example of what I have:
Some **markdown** `here`
<iframe src="asd"></iframe>
More *markdown*.
The iframe should be output as HTML, not parsed text.
I am using Github pages, so Jekyll extensions are not optional.