They both use the same syntax for inserting variables. For example if I want the following
<%= username %>
In my Underscore, my main EJS breaks because it tries to replace username and no such variable exists in the main page.
|
They both use the same syntax for inserting variables. For example if I want the following
In my Underscore, my main EJS breaks because it tries to replace username and no such variable exists in the main page. |
|||||||||||||
|
|
I think square brackets will work in EJS by default:
And if you need to get fancier, the EJS github page describes how to create custom tags:
https://github.com/visionmedia/ejs Using the client side GitHub example, you'd need to do syntax like this when you render:
Options are the 2nd parameter of the |
||||
|
|
|
I had this issue and thought I would share the solution I found for solving the issue client side. Here is how your change the escape regex (via underscore.js docs):
Changes the <%= %> to {{ }}. |
|||
|
|