Advanced Topic: Table Cell Spanning

Table cell spanning is supported. Note that some rows look the same but have different column spanning schemes (look at the source below it to see what's going on):

Cell 1Cell 2Cell 3Cell 4
1234
134
124
1
24

Spanning is achieved with 'extend leftwards' and 'extends rightwards' syntax. Here is the table above's source.

 [ Cell 1 | Cell 2 | Cell 3 | Cell 4 ]
 [ 1 | 2 | 3 | 4 ]
 [ 1 | -> | 3 | 4 ]
 [ 1 | 2 | <- | 4 ]
 [ 1 | -> | -> | -> ]
 [ <- | 2 | -> | 4 ]

It should be obvious that the following rows are not legal, as there is no preceding or following cell to extend:

 [ -> | x | x ]
 [ x | x | <- ]

You control the look of the table with CSS.