diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-11-16 11:47:59 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-11-16 11:47:59 -0500 |
commit | bea16c74be4e65c44bd445a9d5c399806c6653e9 (patch) | |
tree | 228002346366404a121a0c0f5e4cee6809f5066a /docs | |
parent | d93e21fe67d3176add9b43d21adbb806d6cadc9b (diff) | |
download | kutter-bea16c74be4e65c44bd445a9d5c399806c6653e9.tar.gz kutter-bea16c74be4e65c44bd445a9d5c399806c6653e9.tar.xz kutter-bea16c74be4e65c44bd445a9d5c399806c6653e9.zip |
docs: Remove unneeded "raw" markdown tags from documentation
The `<!-- {% raw %} -->` tags are no longer needed now that the Jekyll
package is no longer used to process the markdown documentation.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Command_Templates.md | 4 | ||||
-rw-r--r-- | docs/TMC_Drivers.md | 2 |
2 files changed, 0 insertions, 6 deletions
diff --git a/docs/Command_Templates.md b/docs/Command_Templates.md index 02b92f11..f5c670ef 100644 --- a/docs/Command_Templates.md +++ b/docs/Command_Templates.md @@ -78,7 +78,6 @@ it was prior to entering the macro. Be sure to specify an explicit speed (via the `F` parameter) on the first `G1` command. ## Template expansion -<!-- {% raw %} --> The gcode_macro `gcode:` config section is evaluated using the Jinja2 template language. One can evaluate expressions at run-time by @@ -169,7 +168,6 @@ gcode: {% set sensor = printer["htu21d my_sensor"] %} M117 Temp:{sensor.temperature} Humidity:{sensor.humidity} ``` -<!-- {% endraw %} --> ## Actions @@ -306,7 +304,6 @@ The following actions are available in menu templates: value is False. ## Save Variables to disk -<!-- {% raw %} --> If a [save_variables config section](Config_Reference.md#save_variables) @@ -340,4 +337,3 @@ gcode: {% set svv = printer.save_variables.variables %} ACTIVATE_EXTRUDER extruder={svv.currentextruder} ``` -<!-- {% endraw %} --> diff --git a/docs/TMC_Drivers.md b/docs/TMC_Drivers.md index 349b9d1e..db7910b9 100644 --- a/docs/TMC_Drivers.md +++ b/docs/TMC_Drivers.md @@ -274,7 +274,6 @@ also allows a hold_current to be set during prints (a hold_current is not recommended during sensorless homing). An example macro might look something like: -<!-- {% raw %} --> ``` [gcode_macro SENSORLESS_HOME_X] gcode: @@ -294,7 +293,6 @@ gcode: # Set current during print SET_TMC_CURRENT STEPPER=stepper_x CURRENT={RUN_CUR} HOLDCURRENT={HOLD_CUR} ``` -<!-- {% endraw %} --> The resulting macro can be called from a [homing_override config section](Config_Reference.md#homing_override) |