forked from terrastruct/d2-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
92 lines (90 loc) · 2.09 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
const sidebars = {
tourSidebar: [
{
type: "category",
label: "Introduction",
link: { type: "doc", id: "tour/intro" },
items: [
"tour/intro",
"tour/experience",
"tour/design",
"tour/community",
"tour/faq",
"tour/future",
],
},
{
type: "category",
label: "Getting Started",
link: { type: "doc", id: "tour/install" },
items: [
"tour/install",
"tour/hello-world",
"tour/shapes",
"tour/connections",
"tour/containers",
],
},
{
type: "category",
label: "Special Objects",
link: { type: "doc", id: "tour/text" },
items: [
"tour/text",
"tour/icons",
"tour/sql-tables",
"tour/classes",
"tour/sequence-diagrams",
],
},
{
type: "category",
label: "Customization",
link: { type: "doc", id: "tour/layouts" },
items: [
{
type: "category",
label: "Layouts",
link: { type: "doc", id: "tour/layouts" },
items: ["tour/dagre", "tour/elk", "tour/tala"],
},
"tour/themes",
"tour/style",
"tour/sketch",
"tour/interactive",
],
},
{
type: "category",
label: "In Depth",
link: { type: "doc", id: "tour/strings" },
items: ["tour/strings", "tour/comments", "tour/overrides", "tour/auto-formatter"],
},
{
type: "category",
label: "Extensions",
link: { type: "doc", id: "tour/extensions" },
items: ["tour/vscode", "tour/vim", "tour/obsidian", "tour/slack", "tour/discord"],
},
"tour/cheat-sheet",
"tour/troubleshoot",
],
releasesSidebar: [
{
type: "category",
label: "Releases",
link: { type: "doc", id: "releases/intro" },
items: [
"releases/intro",
"releases/0.1.5",
"releases/0.1.4",
"releases/0.1.3",
"releases/0.1.2",
"releases/0.1.1",
"releases/0.1.0",
"releases/0.0.13",
],
},
],
};
module.exports = sidebars;