Skip to content

Instantly share code, notes, and snippets.

@tmdvs
Created October 24, 2012 10:01
Show Gist options
  • Save tmdvs/3945279 to your computer and use it in GitHub Desktop.
Save tmdvs/3945279 to your computer and use it in GitHub Desktop.
Handlebars.registerHelper('set', function(name, value) {
Handlebars.registerHelper(name, function() {
return value;
});
});
/* usage */
{{ set "foo" "bar" }}
{{ foo }} // prints out bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment