temporary blog shortcut

This commit is contained in:
m5r
2021-08-04 05:14:41 +08:00
parent 6f64d80170
commit fcefb69790
2 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
import { getConfig } from "blitz";
import { remark } from "remark";
import html from "remark-html";
export async function markdownToHtml(markdown: string) {
const { remark } = await import("remark");
const { default: html } = await import("remark-html");
const result = await remark().use(html).process(markdown);
return result.toString();
}