markdown - Jekyll raw HTML in post -
i have jekyll website, posts written in markdown using kramdown parser.
i add raw html within post. when try add html, parses markdown (changing <
's <
example).
i have tried:
- adding html in own paragraph.
- including
.html
file. - adding
markdown="0"
html tag (also tried1
). - indenting (and wrapping in triple back-tick) of above.
- using raw tags
example of have:
some **markdown** `here` <iframe src="asd"></iframe> more *markdown*.
the iframe should output html, not parsed text.
i using github pages, jekyll extensions not optional.
the html being ignored because tag attr's did not have quotes. example width=500
should have been width="500"
nothing else required. html in own paragraphs no indentation , parsed.
Comments
Post a Comment