I\'m using express.js with EJS templates and i\'m trying to do something like this:
<%= \"Test\" %>
but
You should use html code everywhere, and use the EJS tags only where you need dynamic data. Example:
<%= user.name %
To specifically answer your question you can use <%- " to output unescaped HTML data.