In Handlebars, say i have a collection of names how can i do
names
{{#each names}} {{position}} {{name}} {{/each}}
where {{position}} is
Handlebars.registerHelper("counter", function (index){ return index + 1; });
Usage:
{{#each names}} {{counter @index}} {{name}} {{/each}}