-
-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathsidebars.js
More file actions
104 lines (101 loc) · 2.67 KB
/
sidebars.js
File metadata and controls
104 lines (101 loc) · 2.67 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
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// tutorialSidebar: [{ type: "autogenerated", dirName: "." }],
docs: [
"index",
{
type: "category",
label: "Getting Started",
link: {
type: "generated-index",
},
collapsed: false,
items: [
"installation",
"configuration",
"playground",
"typescript-support",
],
},
{
type: "category",
label: "Guides",
link: {
type: "generated-index",
title: "Docusaurus Guides",
description:
"Let's learn about the most important Docusaurus concepts!",
keywords: ["guides"],
image: "/img/nav-logo.jpg",
},
items: [
"guides/creating-pages",
{
type: "category",
label: "Docs",
link: {
type: "doc",
id: "guides/docs/introduction",
},
items: [
"guides/docs/create-doc",
{
type: "category",
label: "Sidebar",
link: {
type: "doc",
id: "guides/docs/sidebar/index",
},
items: [
"guides/docs/sidebar/items",
"guides/docs/sidebar/autogenerated",
"guides/docs/sidebar/multiple-sidebars",
],
},
"guides/docs/versioning",
"guides/docs/multi-instance",
],
},
"blog",
{
type: "category",
label: "Markdown Features",
link: {
type: "doc",
id: "guides/markdown-features/introduction",
},
items: [
"guides/markdown-features/react",
"guides/markdown-features/tabs",
"guides/markdown-features/code-blocks",
"guides/markdown-features/admonitions",
"guides/markdown-features/toc",
"guides/markdown-features/assets",
"guides/markdown-features/links",
"guides/markdown-features/plugins",
"guides/markdown-features/math-equations",
"guides/markdown-features/diagrams",
"guides/markdown-features/head-metadata",
],
},
"styling-layout",
"browser-support",
"seo",
],
},
{
type: "category",
label: "Advanced Guides",
link: { type: "doc", id: "advanced/index" },
items: [
"advanced/architecture",
'advanced/plugins',
'advanced/routing',
'advanced/ssg',
'advanced/client',
],
},
],
};
export default sidebars;