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 &lt; example).

i have tried:

  • adding html in own paragraph.
  • including .html file.
  • adding markdown="0" html tag (also tried 1).
  • 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

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -