Skip to content

Instantly share code, notes, and snippets.

@bsingr
Created February 5, 2010 17:03
Show Gist options
  • Save bsingr/295977 to your computer and use it in GitHub Desktop.
Save bsingr/295977 to your computer and use it in GitHub Desktop.
var view = {
foo: {id: 1},
bar: [{id: 2}]
}
var template = "lalala {{#foo}}{{id}}{{/foo}} lalelu {{#bar}}{{id}}{{/bar}}";
var html = Mustache.to_html(template, view);
// html: "lalala lalelu 2"
// expected: "lalala 1 lalelu 2"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment