mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-06-28 04:12:13 +00:00
7 lines
201 B
JavaScript
7 lines
201 B
JavaScript
const parseMarkdown = async (md) => {
|
|
const { marked } = await import('https://esm.sh/marked');
|
|
return marked.parse(md);
|
|
};
|
|
export default parseMarkdown;
|
|
// Generation time: 17.682s
|
|
// Result: PASS
|