I just found this link to escape html in string with Handlebars.js: Handlebars.js disable escaping with noEscape option?
i.e var template = Handlebars.compile(source, {noEscape: true});
I am using Handlebars.Net in my project and I want to use the same configuration to escape html. Unfortunately I was not able to find any overload there to escape html.
It is just:
Handlebars.Compile(template)
Can you help me escaping html tags in that library?