Mustachejs将html标记呈现为html

时间:2013-03-07 03:16:36

标签: mustache html-rendering

我们正在使用Mustachejs转换旧的CMS。 内容的BODY包含一些html元素:

<strong>Mickey Mouse</strong> is a funny animal cartoon character created in 1928 by Walt Disney.

我们将值应用于Mustachejs,例如 {{Description}}

呈现的输出是

<strong>Mickey Mouse</strong> is a funny animal cartoon character
created in 1928 by Walt Disney.

Mustachejs按字面意思显示数据库中的值。

我们如何让Mustachejs将html标记呈现为html?

期望的结果

米老鼠是一个有趣的动物卡通人物     由沃尔特迪斯尼于1928年创建。

1 个答案:

答案 0 :(得分:20)

它不是在字面上显示数值,因为它在数据库中,它正在编码它。它实际上正在输出

&lt;strong&gt;Mickey Mouse&lt;/strong&gt;

使用{{{three_braces}}}让Mustache渲染而不用html编码字符串。 {{{说明}}}