-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
111 lines (109 loc) · 2.67 KB
/
sidebars.ts
File metadata and controls
111 lines (109 loc) · 2.67 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
docs: [
'intro',
'getting-started',
'why-sdif',
{
type: 'category',
label: 'Concepts',
items: [
'concepts/overview',
'concepts/documents',
'concepts/headers',
'concepts/fields',
'concepts/tables',
'concepts/relations',
'concepts/schemas',
'concepts/validation',
'concepts/canonicalization',
'concepts/hashing',
'concepts/sdif-ai',
],
},
{
type: 'category',
label: 'Guides',
items: [
'guides/install',
'guides/cli',
'guides/json-to-sdif',
'guides/sdif-to-json',
'guides/canonicalize-a-document',
'guides/validate-with-schema',
'guides/create-sdif-ai-projection',
'guides/benchmark-your-data',
],
},
{
type: 'category',
label: 'Examples',
items: [
'examples/plan',
'examples/registry',
'examples/schema',
'examples/validation-report',
'examples/benchmark-summary',
'examples/ai-context',
],
},
{
type: 'category',
label: 'Specification',
link: {type: 'doc', id: 'spec/index'},
items: [
'spec/lexical-structure',
'spec/directives',
'spec/document-model',
'spec/scalar-values',
'spec/tables',
'spec/relations',
'spec/schemas',
'spec/canonicalization',
'spec/sdif-ai',
'spec/conformance',
'spec/security',
],
},
{
type: 'category',
label: 'Benchmarks',
link: {type: 'doc', id: 'benchmarks/index'},
items: [
'benchmarks/efficiency-formalization',
'benchmarks/methodology',
'benchmarks/token-efficiency',
'benchmarks/semantic-density',
'benchmarks/roundtrip-fidelity',
'benchmarks/sdif-vs-json',
'benchmarks/sdif-vs-yaml',
'benchmarks/sdif-vs-toon',
'benchmarks/reproduce',
],
},
{
type: 'category',
label: 'Ecosystem',
link: {type: 'doc', id: 'ecosystem/index'},
items: [
'ecosystem/sdif-core',
'ecosystem/sdif-benchmarks',
'ecosystem/tree-sitter-sdif',
'ecosystem/editor-support',
'ecosystem/roadmap',
],
},
{
type: 'category',
label: 'Contributing',
items: [
'contributing/index',
'contributing/implementation-guide',
'contributing/conformance-suite',
'contributing/release-process',
],
},
'changelog',
],
};
export default sidebars;