-
Notifications
You must be signed in to change notification settings - Fork 472
/
sidebars.js
90 lines (90 loc) · 2.06 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
85
86
87
88
89
90
module.exports = {
someSidebar: {
"Getting Started": [
"README",
{
type: "category",
label: "Highlights",
items: [
"highlights/aggregation",
"highlights/joining",
"highlights/flowmodel",
"highlights/ml",
"highlights/indexing",
],
},
{
type: "category",
label: "Comparisons",
items: [
"comparisons/s2",
"comparisons/geohash",
"comparisons/hexbin",
"comparisons/admin",
"comparisons/placekey",
],
},
"installation",
"quickstart",
// TODO: Add FAQ here
],
"Concepts and Guides": [
{
type: "category",
label: "Migrating from 3.x",
items: [
"library/migrating-3.x",
"library/migration-3.x/functions",
],
},
{
type: "category",
label: "Index structure",
items: [
"library/index/h3Indexing",
"library/index/cell",
"library/index/directededge",
"library/index/vertex",
],
},
"library/terminology",
"library/errors",
"library/restable",
],
"API Reference": [
"api/indexing",
"api/inspection",
"api/traversal",
"api/hierarchy",
"api/regions",
"api/uniedge",
"api/vertex",
"api/misc",
],
Community: [
"community/bindings",
"community/libraries",
"community/tutorials",
"community/applications",
],
"H3 Internals": [
"core-library/overview",
"core-library/coordsystems",
"core-library/creating-bindings",
"core-library/filters",
"core-library/compilation-options",
"core-library/testing",
"core-library/custom-alloc",
"core-library/usage",
{
type: "category",
label: "Algorithms",
items: [
"core-library/latLngToCellDesc",
"core-library/cellToLatLngDesc",
"core-library/cellToBoundaryDesc",
],
},
],
},
};