mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-01-14 08:37:56 +00:00
6 lines
215 B
JavaScript
6 lines
215 B
JavaScript
const parseMarkdown = async (md) => {
|
|
const cdn = 'https://cdn.jsdelivr.net/npm/marked@13.0.0/lib/marked.esm.js';
|
|
const { marked } = await import(cdn);
|
|
return marked.parse(md);
|
|
};
|
|
export default parseMarkdown; |