-
Notifications
You must be signed in to change notification settings - Fork 4
/
sidebarDocs.js
57 lines (57 loc) · 1.12 KB
/
sidebarDocs.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
module.exports = {
docs: [
{
type: 'doc',
id: 'getting-started',
},
{
type: 'doc',
id: 'usage'
},
{
type: 'category',
label: 'Grammar Guide',
link: {
type: 'generated-index',
title: 'Grammar Guide',
description:
'This is a guide to the Gosling grammar. If this is your first time looking at the docs, we recommend starting with Composition, Mark, and Visual Channel.',
keywords: ['guides'],
},
collapsed: true,
items: [
'composition',
'data',
'mark',
'visual-channel',
'genome-builds',
'user-interaction',
'semantic-zoom',
'fixed-responsive',
],
},
{
type: 'doc',
label: 'Grammar Reference',
id: 'reference',
},
{
type: 'doc',
label: 'JavaScript API',
id: 'js-api',
},
{
type: 'doc',
label: 'Integrating non-Gosling visualizations',
id: 'non-gos-vis',
},
{
type: 'doc',
id: 'public-datasets',
},
{
type: 'doc',
id: 'FAQ',
},
],
};