I am using Mustache and using the data
{ \"names\": [ {\"name\":\"John\"}, {\"name\":\"Mary\"} ] }
My mustache template is:
{{#names}} {{name}} is {{/names}}
This works perfectly fine.