-
-
Save agibralter/371734 to your computer and use it in GitHub Desktop.
Mustache.js templating function for Jammit.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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