Literal braces in Handlebars template
问题 I'm having difficulties including braces { } in a Handlebars template so that it didn't interfere with Handlebars syntax. Specifically, I want to have a template like this: {{{sometag}}} Except that I want the first and the last braces to be rendered literally, rather than be a part of Handlebar's "non-escaped expression" syntax. For now, the shortest portable syntax I could come up with is {{#with "{"}}{{.}}{{/with}} , so that the template that I want would look like: {{#with "{"}}{{.}}{{