Handlebars
模板
raw: {{{specialChars}}}
html-escaped: {{specialChars}}
准备脚本
// Handlebars.registerHelper('loud', function(string) {
//    return string.toUpperCase()
// });
输入
{ specialChars: "& < > \" ' ` =" }
输出
raw: & < > " ' ` =
html-escaped: &amp; &lt; &gt; &quot; &#x27; &#x60; &#x3D;
最后更新: 2019 年 8 月 1 日 下午 7:57:01