Escape html tag

Is there anyway to have blaze ignore content inside <pre> tags?

For instance there is this string inside <-> and its blowing up the template because theres no matching tag. How can I escape this?

Ah, if they’re in your HTML template, you must replace them with &lt; and &gt;
If they’re stored in a string, you can use Blaze._escape(String) but Blaze should automatically escape HTML unless you use {{{tripleBrackets}}}

@herteby Thanks for the info. I completely forgot about &lt; &gt;! That worked.