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

@ -2,7 +2,7 @@ import { BlitzPage, GetStaticPaths, GetStaticProps, Head, useRouter } from "blit
import ErrorPage from "next/error";
import type { Post } from "integrations/datocms";
import { getAllPostsWithSlug, getPostAndMorePosts, markdownToHtml } from "integrations/datocms";
import { getAllPostsWithSlug, getPostAndMorePosts } from "integrations/datocms";
type Props = {
post: Post;
@ -63,7 +63,7 @@ export const getStaticProps: GetStaticProps = async ({ params, preview = false }
}
const data = await getPostAndMorePosts(params.slug, preview);
const content = await markdownToHtml(data.post.content || "");
const content = /*await markdownToHtml(data.post.content || "");*/ "";
return {
props: {

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();
}