I\'m building a javascript-heavy rails 3 app. It uses underscore.js, which has a very elegant templating mechanism built on top of ejs ( http://embeddedjs.com/).
The pr
Escape your Underscore variables: (The ones you do not want erb to interpolate)
<%= foo %> becomes: <%%= foo %>