-
Say, I need to pass a string with
I've tried The workaround I found is
but it looks hacky. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi k33nice, it's not pretty for the moment, you can use unicode JSON literal :
So instead of
You can write:
If you can test it on your side, I'm curious if it's working. We've an issue to introduce a "raw" multiline string that won't do any variable resolution: With this we should be able to write:
We'll try to improve this! |
Beta Was this translation helpful? Give feedback.
Hi k33nice, it's not pretty for the moment, you can use unicode JSON literal :
{
=> \u007b}
=> \u007dSo instead of
You can write:
If you can test it on your side, I'm curious if it's working.
We've an issue to introduce a "raw" multiline string that won't do any variable resolution:
#1733
With this we should be able to write:
We'll try to improve this!