Skip to content

Instantly share code, notes, and snippets.

@benben77
Created May 11, 2015 10:03
Show Gist options
  • Save benben77/4602de909058373d7572 to your computer and use it in GitHub Desktop.
Save benben77/4602de909058373d7572 to your computer and use it in GitHub Desktop.
JS Micro Template
// http://ejohn.org/blog/javascript-micro-templating/ by John Resig
(function(w){
var cache = {};
w.tmpl = function tmpl(str){
var fn = !/\W/.test(str) ?
cache[str] = cache[str] ||
tmpl(document.getElementById(str).innerHTML) :
new Function("obj",
"var p=[],print=function(){p.push.apply(p,arguments);};" +
"with(obj){p.push('" +
str
.replace(/[\r\t\n]/g, " ")
.split("<%").join("\t")
.replace(/((^|%>)[^\t]*)'/g, "$1\r")
.replace(/\t=(.*?)%>/g, "',$1,'")
.split("\t").join("');")
.split("%>").join("p.push('")
.split("\r").join("\\'")
+ "');}return p.join('');");
return fn;
};
})(window);
//example usage:
var tmplFn = tmpl(
'<% for ( var i = 0; i < users.length; i++ ) { %>'+
'<li><a href="<%=users[i].url%>"><%=users[i].name%></a></li>'+
'<% } %>'
);
console.log(tmplFn({
users: [{
name: 'Mike',
url: '#mike'
}, {
name: 'Tome',
url: '#tom'
}]
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment