我刚刚发现这个链接可以使用 Handlebars.js 转义字符串中的 html: Handlebars.js disable escaping with noEscape option?
IEvar template = Handlebars.compile(source, {noEscape: true});
我在我的项目中使用Handlebars.Net,我想使用相同的配置来转义 html。不幸的是,我在那里找不到任何重载来逃避 html。
它只是:
Handlebars.Compile(template)
你能帮我转义那个库中的 html 标签吗?