forked from ton-community/ton-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontribute.js
58 lines (58 loc) · 1.33 KB
/
contribute.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
/**
* @type {import('@docusaurus/plugin-content-docs').SidebarConfig}
*/
module.exports = [
'v3/contribute/README',
{
'type': 'category',
'label': 'Common Rules',
'items': [
'v3/contribute/contribution-rules',
'v3/contribute/participate',
'v3/contribute/maintainers',
],
},
{
'type': 'category',
'label': 'Documentation',
'items': [
'v3/contribute/docs/guidelines',
'v3/contribute/docs/schemes-guidelines',
],
},
{
'type': 'category',
'label': 'Tutorials',
'items': [
'v3/contribute/tutorials/guidelines',
'v3/contribute/tutorials/principles-of-a-good-tutorial',
'v3/contribute/tutorials/sample-tutorial',
],
},
{
type: 'category',
label: 'Localization Program',
items: [
{
type: 'doc',
label: 'Overview',
id: 'v3/contribute/localization-program/overview',
},
{
type: 'doc',
label: 'How It Works',
id: 'v3/contribute/localization-program/how-it-works',
},
{
type: 'doc',
label: 'How To Contribute',
id: 'v3/contribute/localization-program/how-to-contribute',
},
{
type: 'doc',
label: 'Translation Style Guide',
id: 'v3/contribute/localization-program/translation-style-guide',
},
],
},
];