-->

What does `{{{variable}}}` mean in handlebars?

2019-05-08 01:44发布

问题:

What does triple curly braces mean in handlebars template syntax?

For example

{{{variable}}}

I cannot find any documentation.

Thanks

回答1:

Handlebars HTML-escapes values returned by a {{expression}}. If you don't want Handlebars to escape a value, use the "triple-stash", {{{
{{{foo}}}

Source: http://handlebarsjs.com/expressions.html
Found via: https://github.com/wycats/handlebars-site/issues/28