ciel-b1/.crossnote/parser.js

12 lines
279 B
JavaScript
Raw Normal View History

2025-11-26 23:44:29 +01:00
({
// 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;
},
})