I see that you can get the index within an each helper in handlebars with
{{#each array}}
{{@index}}: {{this}}
{{/each}}
which I found in How to get index in Handlebars each helper?
This doesn't seem to work in Emblem though:
ul
each App.things
li {{@index}}
Uncaught Error: Emblem syntax error, line 1: Expected BeginStatement or DEDENT but "=" found.
=@index
Am I doing something wrong?