TBODY
Creating the table's body.
Example
TBODY
TROW
TCELL
PRINT "Table cell 1"
END TCELL
TCELL
PRINT "Table cell 2"
END TCELL
END TROW
END TBODY
Output
<tbody>
<tr>
<td>
<span>Table cell 1</span>
</td>
<td>
<span>Table cell 2</span>
</td>
</tr>
</tbody>