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 c522ca2 commit 2bcd3acCopy full SHA for 2bcd3ac
web/markdown/page.html
@@ -38,8 +38,9 @@
38
const markdown = this.responseText;
39
//marked
40
//const html = marked.parse(markdown); // marked
41
- //showdown
+ //showdown
42
const converter = new showdown.Converter();
43
+ converter.setFlavor('github');
44
const html = converter.makeHtml(markdown);
45
document.getElementById(markdown_view_id).innerHTML = html;
46
}
0 commit comments