import rehypeStringify from 'rehype-stringify' import remarkParse from 'remark-parse' import remarkRehype from 'remark-rehype' import { unified } from 'unified' export async function mdToHTML(md: string): Promise { const file = await unified() .use(remarkParse) .use(remarkRehype) .use(rehypeStringify) .process(md) return String(file) }