OD_Library/.crossnote/parser.js
2024-01-25 14:27:51 -06:00

12 lines
No EOL
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;
},
})