Skip to content

Instantly share code, notes, and snippets.

@minwe
Last active August 29, 2015 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save minwe/9952587 to your computer and use it in GitHub Desktop.
Save minwe/9952587 to your computer and use it in GitHub Desktop.
Handlebars script helper
Handlebars.registerHelper('script', function (src){
var s = '<script src="' + src + '" type="text/javascript"><' + '/script>';
return new Handlebars.SafeString(s);
});
// usage: {{{script "https://gist.github.com/4332573.js"}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment