Can't understand how to escape { or } symbols standing next to expression at handlebars java templating engine.
I'm using handlebars templates to generate plain text so I can't use HTML ASCII codes of braces as advised there.
I need expression like \{{{variable.name}}\}
to be resolved to {variable.value}
. Should I create helpers for that or there is a cleaner way?