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