mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-03-17 19:21:01 +00:00
7 lines
189 B
JavaScript
7 lines
189 B
JavaScript
const parseMarkdown = async md => {
|
|
const { parse } = await import('https://esm.sh/marked')
|
|
return parse(md)
|
|
}
|
|
export default parseMarkdown;
|
|
// Generation time: 137.282s
|
|
// Result: PASS
|