Skip to content

Instantly share code, notes, and snippets.

@randito
Forked from agibralter/jammit-mustache.js
Created February 2, 2011 00:17
Show Gist options
  • Save randito/807004 to your computer and use it in GitHub Desktop.
Save randito/807004 to your computer and use it in GitHub Desktop.
// Add a Mustache.js templating function to your JavaScript:
Mustache.template = function(templateString) {
return function () {
if (arguments.length < 1) {
// With no arguments, return the raw template -- useful for rendering
// partials.
return templateString;
} else {
return Mustache.to_html(templateString, arguments[0], arguments[1]);
}
};
};
// And then, in assets.yml, you can set "template_function" to "Mustache.template".
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment