-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
166 lines (159 loc) · 4.54 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
site_name: OctoPrint
site_url: !ENV [SITE_URL, "http://127.0.0.1:8000"]
dev_addr: 0.0.0.0:8008
repo_name: OctoPrint/OctoPrint
repo_url: https://github.com/OctoPrint/OctoPrint
#edit_uri: ../docs.octoprint.org/blob/master/docs/
extra:
macros_src_paths:
- !ENV [OCTOPRINT_SRC, "../OctoPrint/src/"]
social:
- icon: fontawesome/brands/discourse
link: https://community.octoprint.org
- icon: fontawesome/brands/discord
link: https://discord.octoprint.org
- icon: fontawesome/brands/mastodon
link: https://fosstodon.org/@OctoPrint
extra_css:
- stylesheets/extra.css
- stylesheets/fonts.css
theme:
name: material
custom_dir: overrides
logo: images/tentacle.svg
favicon: images/tentacle.svg
icon:
repo: fontawesome/brands/github
features:
- content.code.annotate
- navigation.indexes
- navigation.instant
- navigation.path
- navigation.prune
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
#- toc.integrate
- toc.follow
font:
code: JetBrains Mono
palette:
- scheme: default
media: "(prefers-color-scheme: light)"
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
toggle:
icon: material/weather-sunny
name: Switch to light mode
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- markdown_grid_tables
- md_in_html
- meta
- pymdownx.caret
- pymdownx.critic
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
options:
custom_icons:
- overrides/.icons
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.snippets:
url_download: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- tables
- toc:
permalink: "#"
- "extensions.markdown.version"
- "extensions.markdown.pydantic"
nav:
- Home: index.md
- User Guide:
- user-guide/index.md
- Features:
- Access control: user-guide/features/access-control.md
- Action commands: user-guide/features/action-commands.md
- At commands: user-guide/features/at-commands.md
- Custom controls: user-guide/features/custom-controls.md
- GCode scripts: user-guide/features/gcode-scripts.md
- Plugins: user-guide/features/plugins.md
- Safe mode: user-guide/features/safe-mode.md
- Configuration:
- "Main configuration: config.yaml": user-guide/configuration/config-yaml.md
- "Logging configuration: logging.yaml": user-guide/configuration/logging-yaml.md
- CLI: user-guide/configuration/cli.md
- A YAML primer: user-guide/configuration/yaml-primer.md
- Plugin Development Guide:
- plugin-guide/index.md
- plugin-guide/tutorial.md
- Plugin concepts:
- plugin-guide/concepts/index.md
- plugin-guide/concepts/lifecycle.md
- plugin-guide/concepts/control-properties.md
- plugin-guide/concepts/mixins.md
- plugin-guide/concepts/hooks.md
- plugin-guide/concepts/helpers.md
- Core Development Guide:
- dev-guide/index.md
- Code Reference: reference/
plugins:
- autorefs
- gen-files:
scripts:
- extensions/gen_ref_pages.py
- glightbox
- literate-nav:
nav_file: SUMMARY.md
- macros:
module_name: extensions/macros
on_error_fail: !ENV [CI, false]
- mike:
canonical_version: latest
version_selector: true
- mkdocstrings:
handlers:
python:
options:
show_source: false
show_if_no_docstring: false
show_signature_annotations: true
inherited_members: false
docstring_section_style: list
merge_init_into_class: true
paths:
- !ENV [OCTOPRINT_SRC, "../OctoPrint/src/"]
import:
- https://docs.python.org/3/objects.inv
- https://pythonhosted.org/pyserial/objects.inv
- https://click.palletsprojects.com/objects.inv
- https://flask.palletsprojects.com/objects.inv
- search
- site-urls
watch:
- docs
- mkdocs.yml
- extensions/
- !ENV [OCTOPRINT_SRC, "../OctoPrint/src/"]