Skip to content

Instantly share code, notes, and snippets.

@lorenzoongithub
Created July 3, 2015 21:02
Show Gist options
  • Save lorenzoongithub/497248560b85a178d0f0 to your computer and use it in GitHub Desktop.
Save lorenzoongithub/497248560b85a178d0f0 to your computer and use it in GitHub Desktop.
mustache.js
//
// https://github.com/janl/mustache.js
// Logic-less templates
//
load('https://cdn.jsdelivr.net/mustache.js/0.8.1/mustache.js');
view = {
title: "Joe",
calc: function () {
return 2 + 4;
}
};
output = Mustache.render("{{title}} spends {{calc}}", view);
if (output != 'Joe spends 6') throw ''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment