I am trying to send HTML to a template in Mojolicious and am finding that the html is getting replaced with safe strings somewhere along the way.
$self->stash(portalHeaderHtml => "<html>");
Becomes
<html>
In the source
The template:
<%= $portalHeaderHtml %>
How do I tell it to display HTML and not replace tags?