Skip to content

Instantly share code, notes, and snippets.

@nmerouze
Created December 27, 2009 08:49
Show Gist options
  • Save nmerouze/264213 to your computer and use it in GitHub Desktop.
Save nmerouze/264213 to your computer and use it in GitHub Desktop.
// With hassox' patch
require('./mustache'); // Like I do with Underscore.js
Mustache.to_html("{{title}}", { title: "Title" }); // It doesn't work
// With exports.to_html = Mustache.to_html; in mustache.js
var Mustache = require('./mustache');
Mustache.to_html("{{title}}", { title: "Title" }); // It works
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment