_.templateSettings = {
interpolate: /\<\@\=(.+?)\@\>/gim,
evaluate: /\<\@(.+?)\@\>/gim,
escape: /\<\@\-(.+?)\@\>/gim
};
<script id="employee-template" type="text/template">
, }@>
var template_html = _.template($('#employee-template').html());
var h = $(template_html({name: item.get("name"), position: item.get("position"), phones: item.get("phones")}))
$('#employees').append( h );
http://simpletoad.blogspot.com/2013/02/resolving-underscore-templates-and-java.html