Insert html in a handlebar template without escaping

Try like

<p>{{{content}}}</p>

official reference:

Handlebars HTML-escapes values returned by a {{expression}}. If you
don’t want Handlebars to escape a value,
use the “triple-stash”, {{{.

Leave a Comment