mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-01-14 16:47:55 +00:00
5 lines
147 B
JavaScript
5 lines
147 B
JavaScript
async function parseMarkdown(md){
|
|
const{marked}=await import('https://esm.sh/marked');
|
|
return marked.parse(md);
|
|
}
|
|
export default parseMarkdown; |