Handlebars:
Template
raw: {{{specialChars}}}
html-escaped: {{specialChars}}
Preparation-Script
// Handlebars.registerHelper('loud', function(string) {
//    return string.toUpperCase()
// });
Input
{ specialChars: "& < > \" ' ` =" }
Output
raw: & < > " ' ` =
html-escaped: &amp; &lt; &gt; &quot; &#x27; &#x60; &#x3D;
Last Updated: 8/1/2019, 7:57:01 PM