-
Notifications
You must be signed in to change notification settings - Fork 1
/
sidebars.js
113 lines (112 loc) · 3.89 KB
/
sidebars.js
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
module.exports = {
homeSidebar: [
"about",
{
type: 'category',
label: 'User Documentation',
collapsed: false,
link: {
type: 'generated-index',
description:
'A Guide to Getting Acquainted with Millennium.',
slug: '/users',
},
items: [
'users/installing',
'users/uninstalling',
'users/getting-started',
'users/trouble-shooting',
'users/faq',
],
},
{
type: 'category',
label: 'Development',
collapsed: false,
link: {
type: 'generated-index',
description:
"Let's learn about how to contribute to the Millennium community!",
slug: '/developers',
},
items: [
{
type: 'category',
label: 'Creating Themes',
collapsed: true,
link: {
type: 'generated-index',
description:
"Creating themes for Millennium is a fun and rewarding experience. Let's get started!",
slug: '/developers/themes',
},
items: [
'developers/themes/getting-started',
'developers/themes/making-themes',
'developers/themes/dynamic-patching',
'developers/themes/theme-colors',
'developers/themes/tips-and-tricks',
'developers/themes/publishing',
],
},
{
type: 'category',
label: 'Creating Plugins',
collapsed: true,
link: {
type: 'generated-index',
description:
"Creating plugins for Millennium is a fun and rewarding experience. Let's get started!",
slug: '/developers/plugins',
},
items: [
'developers/plugins/learn',
'developers/plugins/packages',
{
type: 'category',
label: 'Python Reference',
collapsed: true,
link: {
type: 'generated-index',
description:
"Creating plugins for Millennium is a fun and rewarding experience. Let's get started!",
slug: '/developers/plugins/python',
},
items: [
'developers/plugins/python/ready',
'developers/plugins/python/steam-path',
'developers/plugins/python/call-method',
'developers/plugins/python/add-css',
'developers/plugins/python/add-js',
'developers/plugins/python/remove-module',
'developers/plugins/python/set-setting',
'developers/plugins/python/user-settings',
'developers/plugins/python/version'
],
},
{
type: 'category',
label: 'TypeScript Reference',
collapsed: true,
link: {
type: 'generated-index',
description:
"Creating plugins for Millennium is a fun and rewarding experience. Let's get started!",
slug: '/developers/plugins/typescript',
},
items: [
'developers/plugins/typescript/csm',
'developers/plugins/typescript/expose',
'developers/plugins/typescript/find',
'developers/plugins/typescript/self',
'developers/plugins/typescript/window-hook'
],
}
],
}
],
}
]
};