mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-01-13 16:17:54 +00:00
8 lines
225 B
JavaScript
8 lines
225 B
JavaScript
let md
|
|
const parseMarkdown = async s => {
|
|
md ||= (await import('https://cdn.jsdelivr.net/npm/marked/lib/marked.esm.js')).marked
|
|
return md.parse(s)
|
|
}
|
|
export default parseMarkdown;
|
|
// Generation time: 8.679s
|
|
// Result: PASS
|