Skip to content

Instantly share code, notes, and snippets.

@nevans
Created May 28, 2010 16:52
Show Gist options
  • Save nevans/417409 to your computer and use it in GitHub Desktop.
Save nevans/417409 to your computer and use it in GitHub Desktop.
Is there a way to get mustache to do the following?
{
"items": ["red", "green", "blue"]
}
Foo: {{items}}
{{# items}}
* Bar: {{this}}
{{/ items}}
Foo: red,green,blue
* Bar: red
* Bar: green
* Bar: blue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment