-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsidebars.js
More file actions
63 lines (63 loc) · 1.51 KB
/
sidebars.js
File metadata and controls
63 lines (63 loc) · 1.51 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
module.exports = {
docs: [
{
// 1st Section: Display name of the sidebar
"Introduction": [
{
type: 'autogenerated',
// which physical folder this header will scan for documents
dirName: 'intro',
},
],// 2nd Section: Display name of the sidebar
"Commit Handbook": [
{
type: 'autogenerated',
// which physical folder this header will scan for documents
dirName: 'about',
},
],
// 3rd Section: Display name of the sidebar
"For Developers": [
{
type: 'autogenerated',
dirName: 'fordevelopers',
},
],
// 4th Section: Display name of the sidebar
"For Startups": [
{
type: 'autogenerated',
dirName: 'forstartups',
},
],
// 5th Section: Display name of the sidebar
// "SP Resources": [
// {
// type: 'autogenerated',
// dirName: 'sps',
// },
// ],
// 6th Section: Display name of the sidebar
"How to Contribute": [
{
type: 'autogenerated',
dirName: 'contribute',
},
],
// 7th Section: Display name of the sidebar
"Legal": [
{
type: 'autogenerated',
dirName: 'legal',
},
],
// Last Section: Display name of the sidebar
"Other Resources": [
{
type: 'autogenerated',
dirName: 'resources',
},
]
}
],
};