-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsidebars.ts
More file actions
67 lines (65 loc) · 1.88 KB
/
sidebars.ts
File metadata and controls
67 lines (65 loc) · 1.88 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
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
documentationSidebar: [
{
type: 'doc',
id: 'index',
label: 'Documentation Home',
},
{
type: 'category',
label: 'Tutorials',
description: 'Learning-oriented guides for getting started',
link: { type: 'doc', id: 'tutorials/index' },
items: [
'tutorials/your-first-query',
'tutorials/technique-browser',
'tutorials/relationships',
'tutorials/multi-domain-analysis',
],
},
{
type: 'category',
label: 'How-to Guides',
description: 'Problem-oriented solutions for specific tasks',
link: { type: 'doc', id: 'how-to-guides/index' },
items: [
'how-to-guides/manage-data-sources',
'how-to-guides/validate-bundles',
'how-to-guides/schema-variants',
'how-to-guides/error-handling',
'how-to-guides/performance',
],
},
{
type: 'category',
label: 'Principles',
description: 'Understanding-oriented context and design rationale',
link: { type: 'doc', id: 'principles/index' },
items: [
'principles/why-adm-exists',
'principles/why-typescript',
'principles/why-zod',
'principles/extending-stix',
'principles/attack-specification-overview',
'principles/attack-versioning',
'principles/attack-detections',
'principles/schema-design',
'principles/trade-offs',
],
},
{
type: 'category',
label: 'Contributing',
description: 'How to contribute to the project',
link: { type: 'doc', id: 'contributing/index' },
items: [
'contributing/dev-setup',
'contributing/coding-style',
'contributing/tests',
'contributing/docs',
],
},
],
};
export default sidebars;