Skip to content

Commit 2ad308c

Browse files
committed
Use slugify for tabs.
1 parent bf9fc3c commit 2ad308c

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

docs/software/slicers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ For StealthChanger we use standard gcode to change and operate the tools. Many m
4141
## Slicer Gcodes
4242
Depending on the slicer's provenance, the internal macro variables can differ. It is important to translate the internal variables in to universal variables Klipper's `PRINT_START` macro can use.
4343

44-
The [example PRINT_START macro](../software/ktc-easy/examples.md#__tabbed_9_1) accepts the following parameters:
44+
The [example PRINT_START macro](../software/ktc-easy/examples.md#print_start) accepts the following parameters:
4545

4646
- `TOOL_TEMP` — Temperature for the initially selected tool.
4747
- `T0_TEMP`, `T1_TEMP`, etc. — Individual temperatures for each tool (only passed if tool is used).
4848
- `BED_TEMP` — Bed temperature for the first layer.
4949
- `TOOL` — Initial tool number to start with.
5050

51-
See below for custom gcode macros that will send the correct syntax to the [example PRINT_START macro](../software/ktc-easy/examples.md#__tabbed_9_1) for each of the supported slicers.
51+
See below for custom gcode macros that will send the correct syntax to the [example PRINT_START macro](../software/ktc-easy/examples.md#print_start) for each of the supported slicers.
5252

5353
{% for slicer, data in slicers.items() %}
5454

mkdocs.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,10 @@ markdown_extensions:
114114
- pymdownx.snippets
115115
- pymdownx.tabbed:
116116
alternate_style: true
117+
# combine_header_slug: true
118+
slugify: !!python/object/apply:pymdownx.slugs.slugify
119+
kwds:
120+
case: lower
117121
- pymdownx.emoji:
118122
emoji_index: !!python/name:material.extensions.emoji.twemoji
119123
emoji_generator: !!python/name:material.extensions.emoji.to_svg

0 commit comments

Comments
 (0)