Help:Simplified table syntax

DCCWiki, a community DCC encyclopedia.
Jump to: navigation, search

Cominbing templates with tables is complex, it's more powerful. But, you can also simply just use HTML tables.

A very simple table:

Item one Item two
Item three Item four
<table border=1>
<tr>
<td>Item one</td>
<td>Item two</td>
</tr>
<tr>
<td>Item three</td>
<td>Item four</td>
</tr>
</table>


A little bit fancier table:

Item one Item two
Item three Item four
Item five
 <table border=1>
 <tr>
 <td>Item one</td>
 <td>Item two</td>
 </tr>
 <tr>
 <td rowspan=2>Item three</td>
 <td>Item four</td>
 </tr>
 <tr>
 <td>Item five</td>
 </tr>
 </table>