mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-01-13 16:17:54 +00:00
8 lines
198 B
JavaScript
8 lines
198 B
JavaScript
let m;
|
|
const parseMarkdown = async (s) => {
|
|
m ||= (await import('https://esm.sh/marked')).marked;
|
|
return m.parse(s);
|
|
};
|
|
export default parseMarkdown;
|
|
// Generation time: 125.998s
|
|
// Result: PASS
|