Ajoute js custom du parser MD en local
This commit is contained in:
parent
292da982f2
commit
8f130d6535
3 changed files with 33 additions and 0 deletions
12
.crossnote/parser.js
Normal file
12
.crossnote/parser.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
({
|
||||
// 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;
|
||||
},
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue