mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-03-17 03:11:01 +00:00
7 lines
228 B
JavaScript
7 lines
228 B
JavaScript
async function parseMarkdown(md) {
|
|
const { default: M } = await import('https://cdn.jsdelivr.net/npm/marked/lib/marked.esm.js');
|
|
return M.parse(md);
|
|
}
|
|
export default parseMarkdown;
|
|
// Generation time: 41.642s
|
|
// Result: FAIL
|