forked from goodrain/rainbond-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebarsCommunity.js
67 lines (67 loc) · 1.43 KB
/
sidebarsCommunity.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
module.exports = {
// But you can create a sidebar manually
community: [
'support',
'members',
{
type: 'category',
label: '贡献指南',
link: {
type: 'doc',
id: 'contribution/index',
},
items: [
{
type: 'category',
label: '贡献代码',
link: {
type: 'doc',
id: 'contribution/compile/index',
},
items: [
'contribution/compile/console',
'contribution/compile/region',
]
},
'contribution/document/index',
'contribution/app-share/index',
'contribution/plugin/index',
]
},
{
type: 'category',
label: '版本变更',
link: {
type: 'doc',
id: 'change/index'
},
items: [
'change/5.16.0',
'change/5.15.3',
'change/5.15.2',
'change/5.15.1',
'change/5.15.0',
'change/5.14.2',
'change/5.14.1',
'change/5.14.0',
'change/5.13.0',
'change/5.12.0',
'change/5.11.1',
'change/5.11.0',
'change/5.10.1',
'change/5.10.0',
'change/5.9.0',
'change/5.8.1',
'change/5.8.0',
'change/5.7.0',
'change/5.6.0',
'change/5.5.0',
'change/5.4.0',
'change/5.3.3',
'change/5.3.2',
'change/5.3.1',
]
},
'faqs',
]
};