<first></first> - First Row HTML entered inside this tag will only be processed for the first row
<not first></not first> - Not First Row HTML entered inside this tag will only be processed if it's not the first row
<last></last> - Last Row HTML entered inside this tag will only be processed for the last row
<not last></not last> - Not Last Row HTML entered inside this tag will only be processed if it's not the last row
[] - Row Number (for text) The [] will be replaced with the row number. This is currently only used for the $title and $link macros
Example:
For the below code segment, only the last feature section requires a "last" class.
BEFORE
<p> <div class="feature"> content... </div> <div class="feature"> content... </div> <div class="feature last"> content... </div> </p>
AFTER
<p $repeat name="feature" initorws="3"> <div class="feature <last>last</last>"> content... </div> </p>
|