1
2
3
4
export let micromarkExample = (async () => {
const { micromark } = await import("npm:micromark");
return micromark("**Bold text**");
})();