Conversation
added 2 commits
January 18, 2026 12:44
Implements the Liquid tablerow tag that generates HTML table rows for every item in an array.
Features:
- Basic iteration: {% tablerow item in collection %}{% endtablerow %}
- cols: parameter for column count
- limit: parameter to limit iterations
- offset: parameter to start at an offset
- Full tablerowloop object with all properties (index, index0, col, col0, row, first, last, col_first, col_last, length, rindex, rindex0)
The implementation follows the Shopify Liquid Ruby reference implementation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implements the Liquid
tablerowtag that generates HTML table rows for every item in an array.Features
{% tablerow item in collection %}{% endtablerow %}cols:parameter for column countlimit:parameter to limit iterationsoffset:parameter to start at an offsettablerowloopobject with all properties:index,index0- 1-based and 0-based iteration indexcol,col0- 1-based and 0-based column indexrow- 1-based row indexfirst,last- boolean for first/last iterationcol_first,col_last- boolean for first/last column in rowlength- total number of iterationsrindex,rindex0- reverse indexImplementation
The implementation follows the Shopify Liquid Ruby reference implementation and matches the same parser pattern as the existing
fortag.Files Changed
Fluid/Ast/TableRowStatement.cs- AST node for tablerow tagFluid/Values/TableRowLoopValue.cs- tablerowloop objectFluid/FluidParser.cs- Parser registrationFluid/Parser/TagParsers.cs- TableRowModifier structFluid/Ast/AstVisitor.cs- Visitor supportFluid/Ast/AstRewriter.cs- Rewriter supportTesting
All existing tests pass.