12 lines
279 B
JavaScript
12 lines
279 B
JavaScript
({
|
|
// Please visit the URL below for more information:
|
|
// https://shd101wyy.github.io/markdown-preview-enhanced/#/extend-parser
|
|
|
|
onWillParseMarkdown: async function(markdown) {
|
|
return markdown;
|
|
},
|
|
|
|
onDidParseMarkdown: async function(html) {
|
|
return html;
|
|
},
|
|
}) |