-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent-collections.ts
60 lines (58 loc) · 1.32 KB
/
content-collections.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import { defineCollection, defineConfig } from "@content-collections/core"
import { compileMDX } from "@content-collections/mdx"
import {
remarkGfm,
remarkHeading,
remarkStructure,
} from "fumadocs-core/mdx-plugins"
import rehypePrettyCode from "rehype-pretty-code"
import rehypeStringify from "rehype-stringify"
import remarkParse from "remark-parse"
import remarkRehype from "remark-rehype"
const posts = defineCollection({
name: "posts",
directory: "content/",
include: "*.mdx",
schema: (z) => ({
title: z.string(),
date: z.string(),
tag: z.string(),
summary: z.string(),
}),
transform: async (document, context) => {
const mdx = await compileMDX(context, document, {
remarkPlugins: [
remarkGfm,
remarkStructure,
rehypeStringify,
remarkParse,
remarkRehype,
],
rehypePlugins: [
[
rehypePrettyCode,
{
theme: "catppuccin-macchiato",
keepBackground: false,
},
],
[
remarkHeading,
{
properties: {
className: ["anchor"],
ariaLabel: "Link to section",
},
},
],
],
})
return {
...document,
mdx,
}
},
})
export default defineConfig({
collections: [posts],
})