Escaping Braces
Moe-js doesn't provide any support for escaping braces outside of directives. Instead, just use a simple expression:
{{"{{"}} This is double braced }}
Produces:
{{ This is double braced }}
Single braces don't usually need to be escaped, unless they're immediately before a Moe-js directive:
{{"{"}}{{model.title}}{{"}"}}
Produces:
{TheTitle}
alternatively your could include spaces to separate the braces and then use ~
to strip it out:
{ {{~model.title~}} }