I am new to Mustache, please bear with me :)
I have an array in my JSON
\"prop\":{\"brands\":[\"nike\",\"adidas\",\"puma\"]}
if I h
This works
{{#json.props.brands}} {{.}} {{/json.props.brands}}
{{.}} When looping over an array of strings, a . can be used to refer to the current item in the list.
{{.}}
.