forked from CoderLine/alphaTabWebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
82 lines (81 loc) · 1.68 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
const sidebars = {
docs: {
"alphaTab": [
'introduction',
'contributing'
],
"Getting Started (Web)": [
"getting-started/installation-web",
"getting-started/configuration-web"
],
"Getting Started (.net)": [
"getting-started/installation-net",
"getting-started/configuration-net"
],
"Guides": [
"guides/lowlevel-apis",
"guides/styling-player",
"guides/multiple-soundfonts",
"guides/song-details",
"guides/exporter",
"guides/handling-midi-events",
"guides/nodejs",
"guides/breaking-changes-095-096",
"guides/breaking-changes-097-098"
],
"API Reference": [
"reference/settings",
"reference/api",
"reference/score",
"reference/scorerenderer",
"reference/alphasynth"
]
},
tutorial: {
"Tutorials": [
"tutorials"
],
"Tutorial (Web)": [
"tutorial-web/introduction",
"tutorial-web/setup",
"tutorial-web/viewport",
"tutorial-web/track-selector",
"tutorial-web/controls",
"tutorial-web/player",
"tutorial-web/conclusion"
],
"Tutorial (.net)": [
"tutorial-net/introduction",
"tutorial-net/setup",
"tutorial-net/viewport",
"tutorial-net/track-selector",
"tutorial-net/controls",
"tutorial-net/player",
"tutorial-net/conclusion"
]
},
alphaTex: {
"alphaTex": [
"alphatex/introduction",
"alphatex/metadata",
"alphatex/notes",
"alphatex/bar-metadata",
"alphatex/tracks-staves",
"alphatex/beat-effects",
"alphatex/note-effects"
],
},
showcase: {
"Showcase": [
'showcase/introduction',
'showcase/general',
'showcase/layouts',
'showcase/music-notation',
'showcase/guitar-tabs',
'showcase/special-tracks',
'showcase/special-notes',
'showcase/effects'
]
}
};
module.exports = sidebars;