mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-04-27 19:52:14 +00:00
7 lines
234 B
JavaScript
7 lines
234 B
JavaScript
const parseMarkdown=async(md)=>{
|
|
const{default:MarkdownIt}=await import('https://esm.sh/markdown-it@14.1.0');
|
|
return new MarkdownIt({html:false}).render(md);
|
|
};
|
|
export default parseMarkdown;
|
|
// Generation time: 95.822s
|
|
// Result: PASS
|