How can I pass values to handlebars that are not sanitized upon output? For instance, I want to ensure that when using the code
res.render('index', {script: '<script src="bundle.js"></script>'})
, it is not rendered as {{script}}
on the layout showing < script >
instead of the script tag.