-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
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
Curly braces escape #228
Comments
Sure you can use the |
Currently, escaping curly braces is very tricky. Two consecutive curly braces are interpreted as vue template syntax. In the HTML template of designs, you can use The generic solution that also works in markdown fields is: {​{ test }} We should definitely improve escaping curly braces. My preferred escape syntax would be |
The ZeroWidthSpace doesn't work if the payload is inside "code" markdown. However I found a workaround and I'm just copying zerowidth element manually: https://zerowidthspace.me |
Implemented in https://github.com/Syslifters/sysreptor/releases/tag/2024.28 Curly braces can now be escaped with backslashes. Additionally, curly braces inside markdown code blocks are never interpreted as Vue template variable expressions. |
Is it possible to escape curly braces like "{{" from the findings?
If I want to use them inside the findings, it will crash the report generation because it thinks you want to insert Vue variables (even if I put them in the code quotes)
So far tried to escape with double curly braces and backslash but it doesn't work.
The text was updated successfully, but these errors were encountered: