-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathsidebar.js
109 lines (106 loc) · 2.46 KB
/
sidebar.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
const sidebar_en = {
'/': [
],
'/docs/': [
{
text: 'Launch Manual',
icon: 'solid fa-rocket',
link:'launch-manual/',
prefix: 'launch-manual/sections/',
collapsible: true,
children: [
{
text: 'Getting Started',
icon: 'solid fa-play',
link: 'getting-started/'
},
{
text: 'Using Pulsar',
icon: 'solid fa-circle-info',
link: 'using-pulsar/'
},
{
text: 'Hacking the Core',
icon: 'solid fa-screwdriver-wrench',
link: 'core-hacking/'
},
{
text: 'Behind Pulsar',
icon: 'solid fa-microscope',
link: 'behind-pulsar'
},
{
text: 'FAQ',
icon: 'solid fa-circle-question',
link: 'faq/'
}
]
},
{
text: 'Packages',
icon: 'solid fa-box-open',
link: 'packages/'
},
{
text: 'Resources',
icon: 'solid fa-wrench',
link: 'resources/',
prefix: 'resources/',
collapsible: true,
children: [
{
text: 'Glossary',
icon: 'solid fa-book-bookmark',
link: 'glossary/'
},
{
text: 'Pulsar API',
icon: 'solid fa-gear',
link: 'pulsar-api/'
},
{
text: 'Tooling',
icon: 'solid fa-toolbox',
link: 'tooling/'
},
{
text: 'Website',
icon: 'solid fa-table-columns',
link: 'website/'
},
{
text: 'Privacy Policy',
icon: 'solid fa-file-shield',
link: 'privacy/'
},
{
text: 'Code of Conduct',
icon: 'solid fa-gavel',
link: 'conduct/'
}
]
},
{
text: 'Atom Archive',
icon: 'solid fa-box-archive',
link: 'atom-archive/',
prefix: 'atom-archive/',
collapsible: true,
children: [
'getting-started/',
'using-atom/',
'hacking-atom/',
'behind-atom/',
'api/',
'resources/',
'faq/',
'shadow-dom/',
'upgrading-to-1-0-apis/',
'atom-server-side-apis/'
]
}
],
'/about/': [
]
};
export { sidebar_en as sidebar_en };