diff options
| author | Christine Dodrill <me@christine.website> | 2016-12-14 18:15:33 -0800 |
|---|---|---|
| committer | Christine Dodrill <me@christine.website> | 2016-12-14 18:15:33 -0800 |
| commit | fa9ad2f1c875199c55832d69cdc59166a24fb891 (patch) | |
| tree | 2ad9e3bdaccc0e7a6dfca29b0a60072d96101241 /frontend/src | |
| parent | 1328cf3311939063a75d45077f37e530869b6509 (diff) | |
| download | xesite-fa9ad2f1c875199c55832d69cdc59166a24fb891.tar.xz xesite-fa9ad2f1c875199c55832d69cdc59166a24fb891.zip | |
frontend/Utils: unescape compiled html output
Diffstat (limited to 'frontend/src')
| -rw-r--r-- | frontend/src/Utils.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/Utils.js b/frontend/src/Utils.js index f464cf2..a27aa65 100644 --- a/frontend/src/Utils.js +++ b/frontend/src/Utils.js @@ -4,6 +4,6 @@ exports.mdify = function(id) { var converter = new showdown.Converter() elem = document.getElementById(id); md = elem.innerHTML; - elem.innerHTML = converter.makeHtml(md); + elem.innerHTML = unescape(converter.makeHtml(md)); return "done :)"; } |
