Skip to content

Instantly share code, notes, and snippets.

View jonnypetraglia's full-sized avatar

Jonny Petraglia jonnypetraglia

View GitHub Profile
// Simple JavaScript Templating
// John Resig - http://ejohn.org/ - MIT Licensed
(function(){
var cache = {};
this.tmpl = function tmpl(str, data){
// Figure out if we're getting a template, or if we need to
// load the template - and be sure to cache the result.
var fn = !/\W/.test(str) ?
cache[str] = cache[str] ||