ericf / express-handlebars

A Handlebars view engine for Express which doesn't suck.
BSD 3-Clause "New" or "Revised" License
2.31k stars 382 forks source link

How write unsafe string in helpers #157

Closed HellDeveloper closed 8 years ago

HellDeveloper commented 8 years ago

helpers: { "UnsafeString": function (str) { return str; } } var str = "

hello world

";

{{#UnsafeString str}}{{/UnsafeString}} // return

hello world

I want to result: "<h1>hello world</h1>"