mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-07-18 13:55:46 +00:00
7 lines
221 B
JavaScript
7 lines
221 B
JavaScript
async function parseMarkdown(s){
|
|
const{marked}=await import('https://cdn.jsdelivr.net/npm/marked@13.0.3/lib/marked.esm.js')
|
|
return marked.parse(s)
|
|
}
|
|
export default parseMarkdown;
|
|
// Generation time: 6.585s
|
|
// Result: PASS
|