-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsidebars.js
82 lines (81 loc) · 1.74 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
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docs: [
'introduction',
{
type: 'category',
label: 'Getting Overture Data',
link: {
type: 'doc',
id: 'getting-data/index'
},
collapsed: true,
items: [
'getting-data/duckdb',
'getting-data/overturemaps-py',
'getting-data/fused',
'getting-data/athena-aws',
'getting-data/synapse-azure',
'getting-data/sedona',
]
},
{
type: 'category',
label: 'Examples',
link: {
type: 'doc',
id: 'examples/index'
},
collapsed: true,
items: [
'examples/pandas',
'examples/lonboard',
'examples/fused',
'examples/kepler-gl',
'examples/rapid-id',
'examples/overture-tiles',
'examples/build-a-map',
'examples/QGIS',
]
},
{
type: 'category',
label: 'Guides',
link: {
type: 'doc',
id: 'guides/index'
},
collapsed: true,
items: [
'guides/addresses',
'guides/base',
'guides/buildings',
'guides/divisions',
'guides/places',
'guides/transportation',
],
},
{
type: 'category',
label: 'Global Entity Reference System',
link: {
type: 'doc',
id: 'gers/index'
},
collapsed: true,
items: [
'gers/changelog',
'gers/gers-demonstrations',
'gers/stability',
]
},
'attribution'
],
schema:[
{
type: 'autogenerated',
dirName: 'schema', // generate sidebar slice from the docs folder (or versioned_docs/<version>)
}
]
};
module.exports = sidebars;