-
Notifications
You must be signed in to change notification settings - Fork 2
/
sidebars.js
84 lines (83 loc) · 2.96 KB
/
sidebars.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
const sidebars = {
tev2SideBar: [
{ label: 'Introduction/Overview',
link: { type: 'doc', 'id': 'categories/overview' },
type: 'category',
items: [
{ type: 'autogenerated', dirName: 'overview' },
{ type: 'doc', label: 'TEv2 Terminology Model', id: 'terms/patterns/terminology'},
]
},
{ label: 'Specifications',
link: { type: 'doc', 'id': 'categories/specs' },
type: 'category',
items:
[ { label: 'Files',
link: { type: 'doc', 'id': 'categories/specs-files' },
type: 'category',
items: [ { type: 'autogenerated', dirName: 'specs/files' } ]
},
{ label: 'Syntax',
link: { type: 'doc', 'id': 'categories/specs-syntax' },
type: 'category',
items: [ { type: 'autogenerated', dirName: 'specs/syntax' } ]
},
{ label: 'Tools',
link: { type: 'doc', 'id': 'categories/specs-tools' },
type: 'category',
items: [ { type: 'autogenerated', dirName: 'specs/tools' } ]
},
{ label: 'Tools (envisaged)',
link: { type: 'doc', 'id': 'categories/specs-tools-envisaged' },
type: 'category',
items: [ { type: 'autogenerated', dirName: 'specs/tools-envisaged' } ]
},
],
},
{ label: 'Miscellaneous',
link: { type: 'doc', 'id': 'categories/manuals' },
type: 'category',
items:
[ { label: 'Guides',
link: { type: 'doc', 'id': 'categories/guides' },
type: 'category',
items: [ { type: 'autogenerated', dirName: 'guides' } ]
},
{ label: 'FAQs',
link: { type: 'doc', 'id': 'categories/faqs' },
type: 'category',
items: [ { type: 'autogenerated', dirName: 'faqs' } ]
},
{ label: 'Manuals',
link: { type: 'doc', 'id': 'categories/manuals' },
type: 'category',
items:
[ { label: 'Authors',
link: { type: 'doc', 'id': 'categories/manuals-author' },
type: 'category',
items: [ { type: 'autogenerated', dirName: 'manuals/author' } ]
},
{ label: 'Contributors',
link: { type: 'doc', 'id': 'categories/manuals-contributor' },
type: 'category',
items: [ { type: 'autogenerated', dirName: 'manuals/contributor' } ]
},
{ label: 'Curators',
link: { type: 'doc', 'id': 'categories/manuals-curator' },
type: 'category',
items: [ { type: 'autogenerated', dirName: 'manuals/curator' } ]
},
],
},
{ label: 'Miscellanous',
link: { type: 'doc', 'id': 'categories/miscellaneous' },
type: 'category',
items: [ { type: 'autogenerated', dirName: 'miscellaneous' } ]
},
],
},
{ type: 'doc', id: 'tev2-glossary'},
{ type: 'doc', id: 'tev2-glossaries-demo'},
],
};
module.exports = sidebars;