-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent-collections.ts
More file actions
49 lines (45 loc) · 1.06 KB
/
content-collections.ts
File metadata and controls
49 lines (45 loc) · 1.06 KB
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
import { defineCollection, defineConfig } from '@content-collections/core';
import { compileMarkdown } from '@content-collections/markdown';
import remarkGfm from 'remark-gfm';
import rehypeCallouts from 'rehype-callouts';
import rehypeStarryNight from 'rehype-starry-night';
import rehypeStringify from 'rehype-stringify';
import { z } from 'zod';
// for more information on configuration, visit:
// https://www.content-collections.dev/docs/configuration
const notes = defineCollection({
name: 'notes',
directory: 'content/notes',
include: '*.md',
schema: z.object({
title: z.string(),
tags: z.array(z.string()),
slug: z.string(),
date: z.coerce.date(),
excerpt: z.string(),
content: z.string()
}),
transform: async (document, context) => {
const html = await compileMarkdown(
context,
document,
{
remarkPlugins: [
remarkGfm,
],
rehypePlugins: [
rehypeCallouts,
rehypeStarryNight,
rehypeStringify
]
}
);
return {
...document,
html
};
}
});
export default defineConfig({
collections: [notes]
});