mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-04-27 19:52:14 +00:00
7 lines
193 B
JavaScript
7 lines
193 B
JavaScript
async function parseMarkdown(m) {
|
|
const { marked } = await import('https://esm.sh/marked')
|
|
return marked.parse(m)
|
|
}
|
|
export default parseMarkdown;
|
|
// Generation time: 29.156s
|
|
// Result: PASS
|