mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-06-28 04:12:13 +00:00
7 lines
282 B
JavaScript
7 lines
282 B
JavaScript
const parseMarkdown = async (md) => {
|
|
const { default: MarkdownIt } = await import('https://cdn.jsdelivr.net/npm/markdown-it@14.1.0/+esm');
|
|
return MarkdownIt({ html: false, linkify: true }).render(md);
|
|
};
|
|
export default parseMarkdown;
|
|
// Generation time: 18.711s
|
|
// Result: PASS
|