-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
128 lines (119 loc) · 3.26 KB
/
sidebars.js
File metadata and controls
128 lines (119 loc) · 3.26 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
rulesSidebar: [
"rules/index",
{
type: "category",
label: "Core System",
link: {
type: "doc",
id: "rules/core-system/index",
},
items: [
"rules/core-system/collaborative-storytelling",
"rules/core-system/game-structure",
"rules/core-system/action-rolls",
"rules/core-system/consequences",
"rules/core-system/progress-tracks",
"rules/core-system/fortune-rolls",
],
},
{
type: "category",
label: "Characters",
link: {
type: "doc",
id: "rules/characters/index",
},
items: [
"rules/characters/character-creation",
{
type: "category",
label: "Playbooks",
link: {
type: "generated-index",
title: "Playbooks",
description: "How do you keep the enclave running?",
slug: "rules/characters/playbooks",
},
items: [
"rules/characters/playbooks/archivist",
"rules/characters/playbooks/biohacker",
"rules/characters/playbooks/sporetender",
"rules/characters/playbooks/storyteller",
"rules/characters/playbooks/technomancer",
],
},
{
type: "category",
label: "Creations",
link: {
type: "generated-index",
title: "Creations",
description: "Cool Wychcraft Shit",
slug: "rules/characters/creations",
},
items: [
"rules/characters/creations/construct",
"rules/characters/creations/menagerie",
"rules/characters/creations/multitool",
"rules/characters/creations/operating-system",
"rules/characters/creations/shell",
],
},
],
},
{
type: "category",
label: "Enclaves",
link: {
type: "doc",
id: "rules/enclaves/index",
},
items: [
"rules/enclaves/enclave-creation",
{ Playbooks: ["rules/enclaves/playbooks/commune"] },
],
},
],
meshnetSidebar: [
"meshnet/index",
"meshnet/factions/index",
"meshnet/locales/index",
"meshnet/people/index",
"meshnet/whispers/index",
"meshnet/wychcraft/index",
// {
// type: "category",
// label: "Factions",
// link: {
// type: "generated-index",
// title: "Factions",
// description: "Learn about the most important Docusaurus concepts!",
// slug: "meshnet/factions",
// },
// items: ["setting/avalon/welcome-to-avalon"],
// },
],
// But you can create a sidebar manually
/*
tutorialSidebar: [
{
type: 'category',
label: 'Tutorial',
items: ['hello'],
},
],
*/
};
module.exports = sidebars;