Created
May 11, 2015 10:03
-
-
Save benben77/4602de909058373d7572 to your computer and use it in GitHub Desktop.
JS Micro Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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