You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{for (i, (a, b)) in enumerate(iter)}}
...
{{end}}
not supported, will have to do something like {{for (i, e) in enumerate(iter)}} {{> $e[1]}} ... (or shove that in utils)
may be possible to do in the future but difficulty is to keep track of the variable names at arbitrary depth, seems easier to just not support this for now.
The text was updated successfully, but these errors were encountered:
not supported, will have to do something like
{{for (i, e) in enumerate(iter)}} {{> $e[1]}} ...
(or shove that in utils)may be possible to do in the future but difficulty is to keep track of the variable names at arbitrary depth, seems easier to just not support this for now.
The text was updated successfully, but these errors were encountered: