-
Notifications
You must be signed in to change notification settings - Fork 21
/
sidebars.ts
69 lines (64 loc) · 1.43 KB
/
sidebars.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
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
docs: [
{
type: "category",
label: "Overview",
items: ["main/features", "main/right-for-me", "main/getting-started"],
},
{
type: "category",
label: "Basic Info",
items: [
"main/discord",
"main/what-is-isaacscript-doing",
"main/directory-structure",
],
},
{
type: "category",
label: "Tutorials",
items: [
"main/javascript-tutorial",
"main/example-mod",
"main/next-steps",
"main/using-get-data",
"main/enums-and-objects",
"main/mod-feature",
],
},
{
type: "category",
label: "Other Info",
items: [
"main/converting-lua-code",
"main/updating-isaacscript",
"main/custom-stages",
"main/publishing-to-the-workshop",
"main/gotchas",
"main/isaacscript-in-lua",
"main/isaacscript-in-typescript",
],
},
"main/change-log",
],
isaacTypeScriptDefinitions: [
{
type: "autogenerated",
dirName: "isaac-typescript-definitions",
},
],
isaacScriptCommon: [
{
type: "autogenerated",
dirName: "isaacscript-common",
},
],
ESLintConfigIsaacScript: [
{
type: "autogenerated",
dirName: "eslint-config-isaacscript",
},
],
};
export default sidebars;