-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
177 lines (169 loc) · 5.41 KB
/
mkdocs.yml
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
site_name: StreamController
nav:
- Home:
- Home: index.md
- Installation: installation.md
- Common Problems: common_problems.md
- FAQ: faq.md
- Plugin Development:
- Introduction: plugin_dev/intro.md
- Create Your Own:
- Getting Started: plugin_dev/getting_started.md
- 1. The Idea: plugin_dev/idea.md
- 2. Setting Up Your Environment: plugin_dev/setup.md
- 3. Introduction To Bases:
- ActionBase.py: plugin_dev/bases/ActionBase_py.md
- BackendBase.py: plugin_dev/bases/BackendBase_py.md
- PluginBase.py: plugin_dev/bases/PluginBase_py.md
- 4. The Plugin Template:
- Overview: plugin_dev/plugin_template/overview.md
- main.py: plugin_dev/plugin_template/main_py.md
- SimpleAction.py: plugin_dev/plugin_template/SimpleAction_py.md
# - BackendAction.py: plugin_dev/plugin_template/BackendAction_py.md
# - backend.py: plugin_dev/plugin_template/backend_py.md
# - __install__.py: plugin_dev/plugin_template/__install___py.md
# - requirements.txt: plugin_dev/plugin_template/requirements_txt.md
- manifest.json: plugin_dev/plugin_template/manifest_json.md
- attribution.json: plugin_dev/plugin_template/attribution_json.md
- 5. Modify The Template:
- Overview: plugin_dev/modify_template/overview.md
- Add A Counter Action: plugin_dev/modify_template/AddCounter.md
- Add Requirements: plugin_dev/modify_template/add_requirements.md
- Add A Backend Action: plugin_dev/modify_template/add_a_backend_action.md
- Add A Plugin Backend: plugin_dev/modify_template/add_a_plugin_backend.md
- Add Config Options:
- Intro To Gtk: plugin_dev/modify_template/config/gtk_intro.md
- Stubs: plugin_dev/modify_template/config/stubs.md
- Add Config Rows: plugin_dev/modify_template/config/add_config_rows.md
# - Add A Backend To The Plugin: plugin_dev/modify_template/add_backend_to_plugin.md
- Localization: plugin_dev/modify_template/localization.md
- 6. Submitting:
- Manifest: plugin_dev/submitting/manifest.md
- Attribution: plugin_dev/submitting/attribution.md
- Submitting: plugin_dev/submitting/submitting.md
- Terms and Conditions: plugin_dev/submitting/terms.md
- Advanced Concepts:
- DeckController: plugin_dev/advanced_concepts/DeckController.md
- Page Caching: plugin_dev/advanced_concepts/PageCaching.md
- Signals: plugin_dev/advanced_concepts/Signals.md
- Blog:
- blog/index.md
- Privacy:
- privacy/index.md
theme:
name: material
logo: assets/logo.png
favicon: assets/logo_small.png
custom_dir: overrides
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
# - content.code.select
# - content.tabs.link
- content.tooltips
# - header.autohide
# - navigation.expand
- navigation.footer
- navigation.indexes
# - navigation.instant
# - navigation.instant.prefetch
# - navigation.instant.progress
# - navigation.prune
- navigation.sections
- navigation.tabs
# - navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
# - toc.integrate
icon:
repo: fontawesome/brands/github-alt
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep purple
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/weather-night
name: Switch to light mode
repo_url: https://github.com/Core447/StreamController-docs
repo_name: Core447/StreamController-docs
edit_uri: edit/main/docs
extra:
version:
provider: mike
social:
- icon: fontawesome/brands/github
name: Core447
link: https://github.com/Core447
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
actions:
- accept
- reject
- manage
copyright: Copyright © 2024 Core447 - <a href="#__consent">Change cookie settings</a>
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
normalize_issue_symbols: true
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
auto_append:
- includes/mkdocs.md
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.details
plugins:
- snippet:
base_path: docs
- blog
- glightbox
- privacy
- search