Skip to content

Instantly share code, notes, and snippets.

@aaronsnoswell
Created December 6, 2011 07:06
Show Gist options
  • Save aaronsnoswell/1437140 to your computer and use it in GitHub Desktop.
Save aaronsnoswell/1437140 to your computer and use it in GitHub Desktop.
Tweet sized JS templating
// Via @thomasfuchs (http://mir.aculo.us/2011/03/09/little-helpers-a-tweet-sized-javascript-templating-engine/)
function t(s, d){
for(var p in d)
s = s.replace(new RegExp('{'+p+'}','g'), d[p]);
return s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment