forked from mopidy/mopidy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzensical.toml
More file actions
248 lines (223 loc) · 6.28 KB
/
Copy pathzensical.toml
File metadata and controls
248 lines (223 loc) · 6.28 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
[project]
site_name = "Mopidy"
site_description = "Mopidy is an extensible music server written in Python."
site_author = "Stein Magnus Jodal and contributors"
site_url = "https://docs.mopidy.com/stable/"
copyright = """
Copyright © 2009-2026 Stein Magnus Jodal and contributors
"""
edit_uri = "edit/main/docs/"
repo_url = "https://github.com/mopidy/mopidy"
use_directory_urls = true
nav = [
{"Get started" = [
"index.md",
{"Installation" = [
"installation/index.md",
{"System packages" = "installation/packages.md"},
"installation/manual.md",
]},
{"Usage" = [
"usage/index.md",
"usage/service.md",
"usage/terminal.md",
"usage/config.md",
"usage/clients.md",
"usage/troubleshooting.md",
]},
]},
{"Extensions" = [
"ext/index.md",
{"Bundled extensions" = [
"ext/file.md",
"ext/m3u.md",
"ext/stream.md",
"ext/http.md",
"ext/softwaremixer.md",
]},
]},
{"Guides" = [
"guides/index.md",
{"Setup guides" = [
"guides/raspberrypi.md",
"guides/debian.md",
]},
{"Audio output" = [
"guides/audiosinks.md",
"guides/icecast.md",
"guides/pulseaudio.md",
"guides/pipewire.md",
]},
{"Remote control" = [
"guides/upnp.md",
]},
{"Development" = [
"guides/extensiondev.md",
]},
]},
{"Reference" = [
"reference/index.md",
"reference/command.md",
"reference/glossary.md",
{"Concepts" = [
"reference/architecture.md",
"reference/models.md",
"reference/types.md",
]},
{"Framework APIs" = [
"reference/core.md",
"reference/frontend.md",
"reference/backend.md",
"reference/ext.md",
"reference/exceptions.md",
]},
{"Web" = [
"reference/http-server.md",
"reference/http.md",
"reference/js.md",
]},
{"Audio" = [
"reference/audio.md",
"reference/mixer.md",
]},
{"Utilities" = [
"reference/config.md",
"reference/httpclient.md",
"reference/zeroconf.md",
]},
]},
{"About" = [
"about/index.md",
"changelog/index.md",
"about/versioning.md",
{"Contribute" = [
"about/contributing.md",
"about/devenv.md",
"about/codestyle.md",
"about/releasing.md",
]},
{"Credits" = [
"about/authors.md",
"about/sponsors.md",
]},
]}
]
[project.theme]
language = "en"
logo = "images/logo.png"
features = [
"content.action.edit",
"content.action.view",
"content.code.annotate",
"content.code.copy",
"content.code.select",
"content.footnote.tooltips",
"content.tabs.link",
"content.tooltips",
"navigation.footer",
"navigation.indexes",
"navigation.instant",
"navigation.instant.prefetch",
"navigation.path",
"navigation.sections",
"navigation.tabs",
"navigation.top",
"navigation.tracking",
"search.highlight",
]
[[project.theme.palette]]
media = "(prefers-color-scheme)"
toggle.icon = "lucide/sun-moon"
toggle.name = "Switch to light mode"
[[project.theme.palette]]
media = "(prefers-color-scheme: light)"
scheme = "default"
primary = "blue"
palette.primary = "green"
toggle.icon = "lucide/sun"
toggle.name = "Switch to dark mode"
[[project.theme.palette]]
media = "(prefers-color-scheme: dark)"
scheme = "slate"
primary = "blue"
toggle.icon = "lucide/moon"
toggle.name = "Switch to system preference"
[project.theme.font]
text = "Asap"
#code = "Jetbrains Mono"
[project.theme.icon]
repo = "fontawesome/brands/github"
[[project.extra.social]]
icon = "fontawesome/solid/house"
link = "https://mopidy.com/"
[[project.extra.social]]
icon = "fontawesome/brands/discourse"
link = "https://discourse.mopidy.com/"
[[project.extra.social]]
icon = "fontawesome/brands/zulip"
link = "https://mopidy.zulipchat.com/"
[[project.extra.social]]
icon = "fontawesome/brands/github"
link = "https://github.com/mopidy"
[project.plugins.mkdocstrings]
default_handler = "python"
[project.plugins.mkdocstrings.handlers.python]
inventories = ["https://docs.python.org/3/objects.inv"]
paths = ["src"]
[project.plugins.mkdocstrings.handlers.python.options]
show_source = false
# Docstrings
docstring_options.ignore_init_summary = true
docstring_section_style = "list"
docstring_style = "google"
# Cross-references
relative_crossrefs = true
scoped_crossrefs = true
signature_crossrefs = true
unwrap_annotated = true
# Members
filters = "public"
inherited_members = true
summary = true
# Headings
heading_level = 1
parameter_headings = true
type_parameter_headings = true
show_root_heading = true
show_root_full_path = true
show_symbol_type_heading = true
show_symbol_type_toc = true
# Signatures
line_length = 80
merge_init_into_class = true
separate_signature = true
show_signature_annotations = true
show_signature_type_parameters = true
[project.markdown_extensions.pymdownx.blocks.admonition]
[project.markdown_extensions.pymdownx.blocks.tab]
alternate_style = true
[project.markdown_extensions.pymdownx.details]
# Better admonition support
[project.markdown_extensions.pymdownx.highlight]
[project.markdown_extensions.pymdownx.inlinehilite]
# Inline highlight of code snippets ala `#!python range(10)`
[project.markdown_extensions.pymdownx.keys]
# More visual rendering of keyboard shortcuts
[project.markdown_extensions.pymdownx.magiclink]
repo_url_shorthand = true
provider = "github"
user = "mopidy"
repo = "mopidy"
# With this, #123 links to issues and !123 links to PRs.
#
[project.markdown_extensions.pymdownx.snippets]
# Include snippets from other files with --8<--
# base_path includes the project root so AUTHORS etc. can be referenced
base_path = ["."]
[project.markdown_extensions.pymdownx.superfences]
# Better code block support
custom_fences = [
{ name = "mermaid", class = "mermaid", format = "pymdownx.superfences.fence_code_format" }
]
[project.markdown_extensions.tables]
# Nice data tables, used e.g. for config values.