What does `{{{variable}}}` mean in handlebars?
Asked Answered
B

1

29

What does triple curly braces mean in handlebars template syntax?

For example

{{{variable}}}

I cannot find any documentation.

Thanks

Betrothal answered 19/7, 2015 at 0:0 Comment(1)
assemble.io/docs/Pages-Collections.htmlKeratoplasty
C
36

Because it was originally designed to generate HTML, Handlebars escapes values returned by a {{expression}}. If you don't want Handlebars to escape a value, use the "triple-stash", {{{.

Source: https://handlebarsjs.com/guide/#html-escaping
Found via: https://github.com/wycats/handlebars-site/issues/28

Clay answered 19/7, 2015 at 0:14 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.