How do I escape double curly braces? I want a text that just says:
{{ it's all just a string }}
I can escape the curly braces like this:
{{ '{{' }} hello }}
but this seems like a very unprincipled way to go about this and I am uncomfortable leaving stuff like this in a production app.
I tried the following, all of which don't work:
\{\{ it's all just a string \}\}
\{{ it's all just a string \}}
{{ "{{ it's all just a string }}" }}
EDIT: put the above in a code block because otherwise (of course!) my escape characters got escaped
What's the recommended way of doing this?