-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
75 lines (72 loc) · 1.72 KB
/
Copy pathsidebars.js
File metadata and controls
75 lines (72 loc) · 1.72 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
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
* The sidebars can be generated from the filesystem, or explicitly defined here.
*
* For more information, see:
* https://docusaurus.io/docs/api/sidebar
*/
module.exports = {
tutorialSidebar: [
{
type: 'category',
label: 'Specification',
collapsible: true,
collapsed: false,
items: [
'specification/overview',
'specification/field-definitions',
'specification/crosswalk',
'specification/modules',
'specification/examples',
'specification/roadmap',
],
},
{
type: 'category',
label: 'Getting Started',
collapsible: true,
items: [
'getting-started/installation',
'getting-started/examples',
],
},
{
type: 'category',
label: 'Governance',
collapsible: true,
items: [
// Governance overview and policies
'governance/governance-overview',
'governance/versioning-release-policy',
'governance/contribution-process',
// Legacy governance docs
'governance/mission',
'governance/roadmap',
'governance/faq',
],
},
{
type: 'category',
label: 'Compliance',
collapsible: true,
items: [
'compliance/compliance-overview',
'compliance/compliance-validation',
'compliance/compliance-certification',
],
},
{
type: 'category',
label: 'About',
collapsible: true,
items: [
'about/team',
'about/contact',
'about/acknowledgements',
],
},
],
};