`{{{variable}}}` 在车把中是什么意思?

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

三花括号在 handlebars 模板语法中是什么意思?

例如

{{{variable}}}

我找不到任何文档。

谢谢

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", {{{.

来源:https://handlebarsjs.com/guide/#html-escaping
发现于:https://github.com/wycats/handlebars-site/issues/28