Skip to content

Instantly share code, notes, and snippets.

@lorenzoongithub
Created June 30, 2015 20:36
Show Gist options
  • Save lorenzoongithub/5c93f5e6766f700da4a8 to your computer and use it in GitHub Desktop.
Save lorenzoongithub/5c93f5e6766f700da4a8 to your computer and use it in GitHub Desktop.
hogan.js
//
// A compiler for the Mustache templating language
// http://twitter.github.com/hogan.js
//
load('https://cdnjs.cloudflare.com/ajax/libs/hogan.js/3.0.2/hogan.js');
data = {
screenName: "dhg"
};
template = Hogan.compile("Follow @{{screenName}}.");
output = template.render(data);
if (output != 'Follow @dhg.') throw '';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment