Table
This markup defines a table. No abbreviated form is available for a table. You must embed tables in the Description, Summary or Example markups.
The tags define the appearance of the table. The <tr> tag creates a table row. The <td> tag creates a table column.
Example
Normal form:
(*!<description> <table>
<tr>
<td> Contents of cell 1 </td>
<td> Contents of cell 2 </td>
</tr>
<tr>
<td> Contents of cell 3 </td>
<td> Contents of cell 4 </td>
</tr>
</table> </description>*)
Create table with header row
You also have the option to create the table with header row. To do this, use the <th> markup instead of <td>.
Example
(*!<description> <table>
<tr>
<th> Header cell 1 </th>
<th> Header cell 2 </th>
</tr>
><tr>
<td> Contents of cell 1 </td>
<td> Contents of cell 2 </td>
</tr>
</table> </description>*)