import { CSS, KATEX_CSS, render } from '@deno/gfm' export function renderGfm(md: string): string { const body = render(md, { allowMath: true }) return `
${body}
` }