NAME
Template::Liquid::Tag::Increment - Document-level Persistant Number
Description
Creates a new number variable, and increases its value by one every time it is called. The initial value is 0
.
Synopsis
{% increment my_counter %}
{% increment my_counter %}
{% increment my_counter %}
...will result in...
0
1
2
Notes
Variables created through the increment
tag are independent from variables created through assign or capture.
In the example below, a variable named "var" is created through assign. The increment
tag is then used several times on a variable with the same name. Note that the increment
tag does not affect the value of "var" that was created through assign
.
{% assign var = 10 %}
{% increment var %}
{% increment var %}
{% increment var %}
{{ var }}
...would print...
0
1
2
10
See Also
Liquid for Designers: http://wiki.github.com/tobi/liquid/liquid-for-designers
Author
Sanko Robinson <sanko@cpan.org> - http://sankorobinson.com/
The original Liquid template system was developed by jadedPixel (http://jadedpixel.com/) and Tobias Lütke (http://blog.leetsoft.com/).
License and Legal
Copyright (C) 2009-2022 by Sanko Robinson <sanko@cpan.org>
This program is free software; you can redistribute it and/or modify it under the terms of The Artistic License 2.0. See the LICENSE file included with this distribution or http://www.perlfoundation.org/artistic_license_2_0. For clarification, see http://www.perlfoundation.org/artistic_2_0_notes.
When separated from the distribution, all original POD documentation is covered by the Creative Commons Attribution-Share Alike 3.0 License. See http://creativecommons.org/licenses/by-sa/3.0/us/legalcode. For clarification, see http://creativecommons.org/licenses/by-sa/3.0/us/.