I\'m iterating over a list in Handlebars using the built-in each helper.
Within the each block, I\'m referencing the current loop index
there is an easy way to incitement with the {{@index}} value.
solution is to call the funtion and pass the @index value o it and than on JS, use helper to return @index + 1
here is go
{{incitement @index}}
and here is code for the js
Handlebars.registerHelper("incitement", function (inindex) {
return inindex + 1
});