diff options
Diffstat (limited to 'docs/Command_Templates.md')
-rw-r--r-- | docs/Command_Templates.md | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/docs/Command_Templates.md b/docs/Command_Templates.md index 3aa68c13..c89d85bc 100644 --- a/docs/Command_Templates.md +++ b/docs/Command_Templates.md @@ -138,8 +138,13 @@ This is quite useful if you want to change the behavior of certain commands like [gcode_macro M117] rename_existing: M117.1 gcode: - M117.1 { rawparams } - M118 { rawparams } + {% if rawparams %} + {% set escaped_msg = rawparams|replace('"', '\\"') %} + SET_DISPLAY_TEXT MSG="{escaped_msg}" + RESPOND TYPE=command MSG="{escaped_msg}" + {% else %} + SET_DISPLAY_TEXT + {% endif %} ``` ### The "printer" Variable |