-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontent-collections.ts
72 lines (71 loc) · 2.05 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
61
62
63
64
65
66
67
68
69
70
71
72
import { defineCollection, defineConfig } from "@content-collections/core";
import { compileMDX } from "@content-collections/mdx";
import {
transformerMetaHighlight,
transformerMetaWordHighlight,
transformerNotationDiff,
} from "@shikijs/transformers";
import rehypeAutolinkHeadings from "rehype-autolink-headings";
import rehypePrettyCode from "rehype-pretty-code";
import rehypeSlug from "rehype-slug";
import remarkGfm from "remark-gfm";
const posts = defineCollection({
name: "posts",
directory: "content",
include: "**/*.mdx",
schema: (z) => ({
title: z.string(),
description: z.string(),
publishedAt: z.string().date(),
}),
transform: async (document, context) => {
const mdx = await compileMDX(context, document, {
remarkPlugins: [remarkGfm],
rehypePlugins: [
rehypeSlug,
[
rehypePrettyCode,
{
theme: "material-theme-palenight",
transformers: [
transformerMetaHighlight(),
transformerMetaWordHighlight(),
transformerNotationDiff({
matchAlgorithm: "v3",
}),
],
onVisitLine(node: any) {
// Prevent lines from collapsing in `display: grid` mode, and allow empty
// lines to be copy/pasted
if (node.children.length === 0) {
node.children = [{ type: "text", value: " " }];
}
},
onVisitHighlightedLine(node: any) {
node.properties.className.push("line--highlighted");
},
onVisitHighlightedWord(node: any) {
node.properties.className = ["word--highlighted"];
},
},
],
[
rehypeAutolinkHeadings,
{
properties: {
className: ["subheading-anchor"],
ariaLabel: "Link to section",
},
},
],
],
});
return {
...document,
mdx,
};
},
});
export default defineConfig({
collections: [posts],
});