-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
96 lines (93 loc) · 2.55 KB
/
Copy pathsidebars.ts
File metadata and controls
96 lines (93 loc) · 2.55 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
docsSidebar: [
'intro',
{
type: 'category',
label: '入门',
collapsed: false,
link: {
type: 'generated-index',
slug: '/category/getting-started',
title: '入门',
description: '安装、快速上手与支持的平台版本。',
},
items: [{type: 'autogenerated', dirName: 'getting-started'}],
},
{
type: 'category',
label: '使用指南',
collapsed: false,
link: {
type: 'generated-index',
slug: '/category/guides',
title: '使用指南',
description: '面向日常开发的任务导向教程。',
},
items: [{type: 'autogenerated', dirName: 'guides'}],
},
{
type: 'category',
label: '核心概念',
collapsed: false,
link: {
type: 'generated-index',
slug: '/category/concepts',
title: '核心概念',
description: '理解 ZLua 的设计模型与运行时架构。',
},
items: [{type: 'autogenerated', dirName: 'concepts'}],
},
{
type: 'category',
label: 'API 参考',
collapsed: false,
link: {
type: 'generated-index',
slug: '/category/reference',
title: 'API 参考',
description: 'C# 特性、Lua API 与编组速查。',
},
items: [{type: 'autogenerated', dirName: 'reference'}],
},
{
type: 'category',
label: '规范文档',
collapsed: true,
link: {
type: 'generated-index',
slug: '/category/spec',
title: '规范文档',
description: '权威语义规范,供进阶开发者与贡献者查阅。',
},
items: [{type: 'autogenerated', dirName: 'spec'}],
},
{
type: 'category',
label: '社区',
collapsed: false,
link: {
type: 'generated-index',
slug: '/category/community',
title: '社区',
description: '路线图、测试、FAQ 与联系方式。',
},
items: [{type: 'autogenerated', dirName: 'community'}],
},
],
architectureSidebar: [
{
type: 'category',
label: '架构与性能',
collapsed: false,
link: {
type: 'generated-index',
slug: '/category/architecture',
title: '架构与性能',
description: 'Il2Cpp 实现、调用路径与性能分析。',
},
items: [{type: 'autogenerated', dirName: 'architecture'}],
},
],
};
export default sidebars;