-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
209 lines (199 loc) · 7.55 KB
/
Copy pathmkdocs.yml
File metadata and controls
209 lines (199 loc) · 7.55 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
site_name: AFC Project Documentation
site_description: "AFC Project Documentation"
site_url: https://www.afcproject.dev/
repo_url: https://github.com/AFCProject/Documentation
edit_uri: 'blob/main/docs/'
repo_name: AFCProject/Documentation
use_directory_urls: False
nav:
- Home:
- index.md
- Initial Startup Guide: initial-startup/01-overview.md
- Troubleshooting: troubleshooting/troubleshooting.md
- AFC-Klipper-Add-On:
- Overview: index.md
- Features: features.md
- GUI Support: gui.md
- Installation:
- Getting Started: installation/getting-started.md
- Runtime Options: installation/runtime-options.md
- Installation Menus:
- Main Menu: installation/main-menu.md
- Install Menu: installation/install-menu.md
- Utilities Menu: installation/utilities-menu.md
- Update Menu: installation/update-menu.md
- Uninstall Process: installation/uninstall-process.md
- Buffer Overview: installation/buffer-overview.md
- Buffer Ram Sensor: installation/buffer-ram-sensor.md
- Slicer / PRINT_START Setup: installation/slicer-setup.md
- Updating:
- Updating AFC-Klipper-Add-On: updates/updates.md
- Additional Units:
- Adding additional units: additional-units/index.md
- Configuration:
- Configuration Overview: configuration/configuration_overview.md
- Configuration Files:
- AFC.cfg: configuration/AFC.cfg.md
- AFC_Hardware.cfg: configuration/AFC_Hardware.cfg.md
- AFC_UnitType_1.cfg: configuration/AFC_UnitType_1.cfg.md
- AFC_Macro_Vars.cfg: configuration/AFC_Macro_Vars.cfg.md
- Klipper Commands:
- Command Overview: klipper/commands.md
- Internal Commands:
- Spool Commands: klipper/internal/spool.md
- Calibration Commands: klipper/internal/calibration.md
- Tip Forming Commands: klipper/internal/tip_forming.md
- Buffer Commands: klipper/internal/buffer.md
- Lane / Movement Commands: klipper/internal/lane.md
- Misc. Commands: klipper/internal/misc.md
- TD-1 Commands: klipper/internal/td1.md
- External Macros: klipper/external/macros.md
- Configuration Examples: configuration/configuration_examples.md
- Calibration Process: installation/calibration.md
- Tuning Guide:
- Toolhead Variable Calculation: toolhead/calculation.md
- Purge Setup: toolhead/purge_setup.md
- TD-1: td1.md
- Initial Startup:
- Overview: initial-startup/01-overview.md
- Flashing: initial-startup/02-flashing.md
- Plugin Install: initial-startup/03-install-plugin.md
- Self Test: initial-startup/04-self-test.md
- Additional Tests: initial-startup/05-additional-tests.md
- Hotend Values: initial-startup/06-hotend-values.md
- Macro Variables: initial-startup/07-macro-variables.md
- Calibration: initial-startup/08-calibration.md
- Slicer Config: initial-startup/09-slicer-config.md
- Print Start Macro: initial-startup/10-print-start-macro.md
- Troubleshooting: initial-startup/11-troubleshooting.md
- Troubleshooting:
- Troubleshooting: troubleshooting/troubleshooting.md
- FAQ: troubleshooting/faq.md
- Latest Release: https://github.com/AFCProject/AFC-Klipper-Add-On/releases
draft_docs: |
_unpublished.md
theme:
icon:
repo: fontawesome/brands/github
name: material
logo: assets/logo.png
custom_dir: overrides
favicon: assets/favicon-32x32.png
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/theme-light-dark
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/theme-light-dark
name: Switch to light mode
primary: custom
features:
- content.code.copy
- content.action.edit
- content.action.view
- search.suggest # Show suggestions when searching
- search.highlight # Highlight search results
- search.share # Share search results
- navigation.top # Adds a back to top button when scrolling long pages
- navigation.instant # XHR loading instead of full page reload
- navigation.instant.prefetch # start loading page if user hovers a link
- navigation.instant.progress # show progress bar when loading a page on slow connections
- navigation.tabs # Adds tabbed navigation to top bar when screen > 1220px
- navigation.tabs.sticky # Keep the tabbed navigation bar at the top of the screen when scrolling
- navigation.tracking # Track the current page in the navigation bar
#- navigation.expand # Start with all sections expanded
- navigation.path # Show the path to the current page at the top of the page
- navigation.footer # adds next and previous buttons to the bottom of the page
- toc.follow # Follow the table of contents when scrolling
- optimize
plugins:
- mkdocs-video
- search:
lang: en
- mkdocs-simple-hooks:
hooks:
on_post_page: "mkdoc_hooks:post_page"
#on_serve: "mkdocs_hooks:force_reload"
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_source: false
paths: [./AFC-Klipper-Add-On/extras/]
- include-markdown
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.blocks.caption
- pymdownx.details
- pymdownx.tilde
- pymdownx.keys
- pymdownx.critic
- pymdownx.mark
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
options:
custom_icons:
- overrides/.icons
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- codehilite
- toc:
permalink: true
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/feedback.js
extra:
analytics:
provider: google
property: G-RW0ETKRRYB
feedback:
title: Was this page helpful?
ratings:
- icon: happyturtle
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: angryturtle
name: This page could be improved
data: 0
note: >-
Thanks for your feedback! Help us improve this page by
using our <a href="https://github.com/AFCProject/Documentation/issues/new/?title=[Feedback]+{title}+-+{url}" target="_blank" rel="noopener">feedback form</a>.
social:
- icon: fontawesome/brands/discord
link: https://discord.gg/armoredturtle
name: Join us on Discord!
- icon: fontawesome/brands/github
link: https://github.com/AFCProject
name: All out projects!
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.
copyright: >
Copyright © 2024 - 2026 AFC Project –
<a href="#__consent">Change cookie settings</a>