VSharapov / INDEXmd

An index.html to render your README.md
0 stars 1 forks source link

Raw text option #16

Closed VSharapov closed 3 years ago

VSharapov commented 3 years ago

Should easy - just adding another menuOption: parser: {"markdown": true, "raw": false}

If you have a <pre> and you set the innerText (instead of innerHTML) ... will it automagically turn carets into &lt;&gt; ? 🤷 Worth a try.

VSharapov commented 3 years ago

If you have a <pre> and you set the innerText (instead of innerHTML) ... will it automagically turn carets into &lt;&gt; ?

Yes!

document.getElementsByTagName('pre')[0].innerText = "multi\nline</pre>and this\nis fine"