-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsource.config.ts
70 lines (64 loc) · 1.66 KB
/
source.config.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
import {
defineConfig,
defineDocs,
frontmatterSchema,
metaSchema,
} from 'fumadocs-mdx/config'
import { z } from 'zod'
export const docs = defineDocs({
dir: 'src/content/docs',
docs: {
schema: frontmatterSchema.extend({
index: z.boolean().default(false),
}),
},
meta: {
schema: metaSchema.extend({
description: z.string().optional(),
}),
},
})
export default defineConfig({
lastModifiedTime: 'git',
})
/* export default defineConfig({
lastModifiedTime: 'git',
mdxOptions: {
rehypeCodeOptions: {
lazy: true,
experimentalJSEngine: true,
langs: ['ts', 'js', 'html', 'tsx', 'mdx'],
inline: 'tailing-curly-colon',
themes: {
light: 'github-light',
dark: 'github-dark',
},
transformers: [
...(rehypeCodeDefaultOptions.transformers ?? []),
transformerTwoslash(),
{
name: 'transformers:remove-notation-escape',
code(hast) {
for (const line of hast.children) {
if (line.type !== 'element') continue
const lastSpan = line.children.findLast(
(v) => v.type === 'element'
)
const head = lastSpan?.children[0]
if (head?.type !== 'text') return
head.value = head.value.replace(/\[\\!code/g, '[!code')
}
},
},
],
},
remarkPlugins: [
remarkMermaid,
remarkMath,
[remarkInstall, { persist: { id: 'package-manager' } }],
[remarkDocGen, { generators: [fileGenerator()] }],
remarkTypeScriptToJavaScript,
],
rehypePlugins: (v) => [rehypeKatex, ...v],
},
}) */