标签: javascript mustache hogan.js
我目前正在做
var compiledHtml = Hogan.compile(templateHtml, { delimiters: '<% %>' });
这很有效。但我需要输出一些HTML,通常我可以使用小胡子默认{{{,我怎么能用我的自定义语法来实现呢?
{{{
答案 0 :(得分:1)
如果您使用的是非标准分隔符,则仍应能够使用&作为非转义标记。这样:
&
<% thing %> <%& thing %>
等同于:
{{ thing }} {{{ thing }}}