Some chars are not rendering inside code blocks correctly - " < >
Closed this issue · 1 comments
OliverFlint commented
Some chars are not rendering inside code blocks correctly:
var mystring = "some text";
renders as;
var mystring = &quot;some text&quot;;
var lst = new List();
renders as;
var lst = new List&lt;string&gt;();
OliverFlint commented
Ignore me!
This was caused by Jade escaping.
Had to change #{markdown} to !{markdown} to unescape it.