1
2
3
4
export let markedExample = (async () => {
const marked = await import("npm:marked");
return marked.parse("**Bold text!**");
})();