Closed aisbergg closed 1 year ago
This PR adds the ability to specify variables and expressions in loop modifiers. Example:
{% assign limit = 3 %} {% assign offset = 1 %} {% for i in (1..5) limit:limit offset:offset %} {{ i -}} {%- endfor %}
results in:
2 3 4
make test
make lint
This PR adds the ability to specify variables and expressions in loop modifiers. Example:
results in:
Checklist
make test
passes.make lint
passes.