My table structure should be able to be modeled as such without having to be chased by exceptions that tell me I am failing to terminate.
<table width="100%"> <tr> <t:Loop id="foreachrow" source="collection" value="currentObject" index="index"> <!-- begin loop collection --> <t:Loop id="foreachitem" source="currentObject"> <!-- begin loop object --> <td> </td> </t:Loop> <!-- end for loop object--> <t:If test="atNewRow" negate="false"> </tr><tr> </t:If> </t:Loop> <!-- end for loop collection--> <t:If test="atNewRow" negate="true"> </tr> </t:If> </table>