arturadib / strapdown

Instant and elegant Markdown documents in the browser
http://strapdownjs.com
MIT License
2.48k stars 410 forks source link

Some chars are not rendering inside code blocks correctly - " < > #61

Closed OliverFlint closed 8 years ago

OliverFlint commented 8 years ago

Some chars are not rendering inside code blocks correctly:

var mystring = "some text"; renders as; var mystring = "some text";

var lst = new List(); renders as; var lst = new List<string>();

OliverFlint commented 8 years ago

Ignore me! This was caused by Jade escaping. Had to change #{markdown} to !{markdown} to unescape it.