summaryrefslogtreecommitdiffstats
path: root/demo/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'demo/index.html')
-rw-r--r--demo/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/demo/index.html b/demo/index.html
index 4bb7a71..de86190 100644
--- a/demo/index.html
+++ b/demo/index.html
@@ -29,7 +29,7 @@
xhr.onload = function (e) {
if (xhr.readyState === 4) {
if (xhr.status === 200) {
- readme.innerHTML = marked(xhr.responseText);
+ readme.innerHTML = xhr.responseText;
[].forEach.call(readme.querySelectorAll("pre"), function(pre) {
var code = document.createElement("code");
code.innerHTML = pre.innerHTML;