-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdocs.ts
More file actions
82 lines (81 loc) · 2.96 KB
/
Copy pathdocs.ts
File metadata and controls
82 lines (81 loc) · 2.96 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
import type { SidebarConfig } from "@svelteness/kit-docs"
export const sidebar: SidebarConfig = {
links: {
"Getting started": [
{ title: "Introduction", slug: "/docs/introduction" },
{ title: "Features", slug: "/docs/features" }
// { title: "Application", slug: "/docs/application" },
],
Installation: [
{ title: "Windows", slug: "/docs/windows" },
{ title: "macOS", slug: "/docs/macos" },
{ title: "Linux", slug: "/docs/linux" }
],
Projects: [
{ title: "Projects", slug: "/docs/projects" },
{ title: "Project", slug: "/docs/project-list" }
],
Show: [
{ title: "Shows", slug: "/docs/show-type" },
{ title: "Views", slug: "/docs/views" },
{ title: "Editing", slug: "/docs/editing" },
{ title: "Items", slug: "/docs/items" },
{ title: "Chords", slug: "/docs/chords" },
{ title: "Groups", slug: "/docs/groups" },
{ title: "Layouts", slug: "/docs/layouts" },
{ title: "Tools", slug: "/docs/tools" }
],
Drawer: [
{ title: "Drawer", slug: "/docs/drawer" },
{ title: "Media", slug: "/docs/media" },
{ title: "Audio", slug: "/docs/audio" },
{ title: "Overlays", slug: "/docs/overlays" },
{ title: "Templates", slug: "/docs/templates" },
{ title: "Scripture", slug: "/docs/scripture" },
{ title: "Calendar", slug: "/docs/calendar" },
{ title: "Actions", slug: "/docs/actions" }
],
Outputs: [
{ title: "Output", slug: "/docs/output" },
{ title: "NDI®", slug: "/docs/ndi" },
{ title: "Multiple outputs", slug: "/docs/outputs" },
{ title: "Styles", slug: "/docs/styles" },
{ title: "Livestreaming", slug: "/docs/livestreaming" }
],
Remote: [
{ title: "Connecting", slug: "/docs/connecting" },
{ title: "RemoteShow", slug: "/docs/remote" },
{ title: "StageShow", slug: "/docs/stage" },
{ title: "ControlShow", slug: "/docs/controller" },
{ title: "OutputShow", slug: "/docs/outputstream" },
{ title: "Bitfocus Companion", slug: "/docs/companion" }
],
Cloud: [
{ title: "Cloud Sync", slug: "/docs/cloud" },
{ title: "Integrations", slug: "/docs/integrations" }
],
Actions: [
{ title: "MIDI", slug: "/docs/midi" },
{ title: "Importing", slug: "/docs/importing" },
{ title: "Exporting", slug: "/docs/exporting" }
],
Advanced: [
// { title: "Mirrors", slug: "/docs/mirrors" },
{ title: "Data storage", slug: "/docs/data" },
{ title: "CCLI Reporting", slug: "/docs/advanced/ccli-reporting" }
],
Tips: [
// { title: "Roadmap", slug: "/docs/roadmap" },
{ title: "Styling", slug: "/docs/styling" },
{ title: "Keyboard Shortcuts", slug: "/docs/shortcuts" },
{ title: "FAQ", slug: "/docs/faq" }
],
Formats: [
{ title: ".show", slug: "/docs/format-show" },
{ title: ".project", slug: "/docs/format-project" },
// { title: '.template', slug: '/docs/format-template' }, // "fstemplate", "fst", "template", "json"
// { title: '.theme', slug: '/docs/format-theme' }, // "fstheme", "theme", "json"
{ title: ".fsb", slug: "/docs/format-bible" }
]
}
}