Mustache 模板转义 html 代码

Mustache template escape html code

我有 javascript 这样的数组,

[button: "M'AVERTIR"]

当我尝试在 mustache 模板中显示字符串时。它显示以下格式。

M'AVERTIR

我的小胡子模板代码是,

{{=<% %>=}}
<%button%>
<%={{ }}=%>

有什么办法可以解决这个问题吗?

你可以试试这个:

* {{default_tags}}
{{=<% %>=}}
* <% erb_style_tags %>
<%={{ }}=%>
* {{ default_tags_again }}

See the page

我试过这样,

{{=<% %>=}}
<%& button %>
<%={{ }}=%>

对我有用。