a small template library (and your boo)
npm install boo-templates``javascript`
var template = new BooTemplate("This is {{foo}}ey.");
template.compile({foo: "barn"});
// => "This is barney."
`javascript`
var template = new BooTemplate("This is <%foo%>ey.", "<%", "%>");
template.compile({foo: "barkl"});
// => "This is barkley."
and close delimiters.open and close default to "{{" and "}}"`javascript
var compiler = new BooTemplate.Compiler();
compiler.compile("{{foo}}{{bar}}", {foo: "Boo", bar: "Template"});
// => "BooTemplate"``javascript
var compiler = new BooTemplate.Compiler("<%", "%>");
compiler.compile("<%foo%> <%bar%>", {foo: "Your", bar: "Boo"});
// => "Your Boo"
``