Underscore.js templates use <%= %> for variable interpolation. Unfortunately that is also interpreted in a JSP (or GSP). Is there a way to use Underscore.js templates wit
According to the webpage you linked to:
If ERB-style delimiters aren't your cup of tea, you can change Underscore's template settings >to use different symbols to set off interpolated code.
It suggests you change the interpolate and evaluate regexes.
This means you can change the <%= %> usage to something that doesn't conflict with JSP.