forked from tno-terminology-design/tev2-specifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
68 lines (67 loc) · 3.34 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
const sidebars = {
tev2SideBar: [
{ label: 'Introduction-Overview',
link: { type: 'generated-index', description: 'The Terminology Engine (v2) is a set of specifications and tools that caters for the creation and maintenance of terminologies, as well as for its subsequent use in publications of different types (e.g. websites, whitepapers) and formats (e.g. html, LaTeX), as appropriate for different, individual scopes.' },
type: 'category',
items: [
{ type: 'autogenerated', dirName: 'overview' },
{ type: 'doc', label: 'Terminology Support', id: 'terms/patterns/terminology'},
]
},
{ label: 'Guides',
link: { type: 'generated-index', description: 'This section provides a set of guides that people can use for various purposes.' },
type: 'category',
items: [ { type: 'autogenerated', dirName: 'guides' } ]
},
{ label: 'Manuals',
link: { type: 'generated-index', description: 'We have the manuals for the following roles.' },
type: 'category',
items:
[ { label: 'Authors',
link: {type: 'doc', id: 'manuals/author/author-overview'},
type: 'category',
items: [ { type: 'autogenerated', dirName: 'manuals/author' } ]
},
{ label: 'Curators',
link: {type: 'doc', id: 'manuals/curator/curator-overview'},
type: 'category',
items: [ { type: 'autogenerated', dirName: 'manuals/curator' } ]
},
],
},
{ label: 'Specifications',
link: { type: 'generated-index', description: 'Specifications and reference material.' },
type: 'category',
items:
[ { label: 'Files',
link: { type: 'generated-index', description: 'This section contains the specifications of the various FILES (types) that are used within TEv2.' },
type: 'category',
items: [ { type: 'autogenerated', dirName: 'specs/files' } ]
},
{ label: 'Syntax',
link: { type: 'generated-index', description: 'This section contains the specifications of the various SYNTAXes that are used within TEv2.' },
type: 'category',
items: [ { type: 'autogenerated', dirName: 'specs/syntax' } ]
},
{ label: 'Tools',
link: { type: 'generated-index', description: 'This section contains the specifications of the various TOOLS that exist, and that are available in the official [tev2-tools github repository](https://github.com/tno-terminology-design/tev2-tools).' },
type: 'category',
items: [ { type: 'autogenerated', dirName: 'specs/tools' } ]
},
{ label: 'Tools (envisaged)',
link: { type: 'generated-index', description: 'This section contains the specifications of ENVISAGED TOOLS, i.e., tools that we would like to become part of TEv2.' },
type: 'category',
items: [ { type: 'autogenerated', dirName: 'specs/tools-envisaged' } ]
},
],
},
{ type: 'doc', id: 'tev2-glossary'},
{ type: 'doc', id: 'tev2-glossaries-demo'},
{ label: 'Miscellanous',
link: {type: 'generated-index', description: 'This section of the documentation contains miscellaneous documents, i.e., documents for which we do not (yet) have a better place.' },
type: 'category',
items: [ { type: 'autogenerated', dirName: 'miscellaneous' } ]
},
],
};
module.exports = sidebars;