You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your output wouldn't include the angular brackets in the first place since the only brackets there are part of the EJS tag, so I don't think EJS is what's causing your problems here.
Are you trying to create html tags called Mike on the fly? Because you could probably do something like ejs.render('<%- ``\<${myVar}>`` %>', { myVar: 'mike' });
for that.
In short, I have the following
When the template is rendered, it is escaping the
<
and>
charactersI am expect output to be
What should I be doing to make sure the
<
and>
are actually renderedThe text was updated successfully, but these errors were encountered: