In a webhook response, I’m outputting HTML and using double curly braces as shown below:
<span class="status">{{ statusMessage }}</span>
How do I prevent ‘statusMessage’ from being recognized as a variable? I can’t seem to figure it out, even with escape characters.
I think it’s cause of Make frontend IML syntax that somewhat resembles mustache template syntax for variables and formulas.
There are a few ways to do this,
Something like this,
Or,

But, Like you, I am curious about whether there is a way to escape it without resorting to these approaches.
1 Like
Good one with the “+”. Works no problem now for me!
<span class="status">{{{+}}{ statusMessage }}</span>
1 Like
Another thing you might try here is placing a {{null}} between either set of curly braces, like this:
Result:

1 Like