aboutsummaryrefslogtreecommitdiff
path: root/frontend/src
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2016-12-14 18:15:33 -0800
committerChristine Dodrill <me@christine.website>2016-12-14 18:15:33 -0800
commitfa9ad2f1c875199c55832d69cdc59166a24fb891 (patch)
tree2ad9e3bdaccc0e7a6dfca29b0a60072d96101241 /frontend/src
parent1328cf3311939063a75d45077f37e530869b6509 (diff)
downloadxesite-fa9ad2f1c875199c55832d69cdc59166a24fb891.tar.xz
xesite-fa9ad2f1c875199c55832d69cdc59166a24fb891.zip
frontend/Utils: unescape compiled html output
Diffstat (limited to 'frontend/src')
-rw-r--r--frontend/src/Utils.js2
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 :)";
}