We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 110c725 commit 6eb7ed8Copy full SHA for 6eb7ed8
web/md_file/page.html
@@ -31,7 +31,7 @@
31
xmlhttp.onreadystatechange =
32
function () {
33
if (this.readyState == 4 && this.status == 200) {
34
- const html = marked.parse(markdown);
+ const html = marked.parse(this.responseText);
35
document.getElementById(markdown_view_id).innerHTML = html;
36
}
37
};
0 commit comments