We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.11.2
Chrome
Desktop PC
macOS
Define this macro to reproduce:
[gcode_macro TEXT_WITH_WHITESPACE] gcode: {action_respond_info("|123|")} {action_respond_info("| |")} {action_respond_info(" | |")}
Expected output:
|123| | | | |
Actual output:
The reason is that HTML by default collapses whitespace. By adding white-space: pre-wrap, this can be avoided.
white-space: pre-wrap
See above
No response
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Mainsail Version:
2.11.2
Browser:
Chrome
Device:
Desktop PC
Operating System:
macOS
What happened?
Define this macro to reproduce:
Expected output:
Actual output:
The reason is that HTML by default collapses whitespace. By adding
white-space: pre-wrap
, this can be avoided.What did you expect to happen instead?
See above
How to reproduce this bug?
See above
Additional information:
No response
The text was updated successfully, but these errors were encountered: