Previous | Up | Top | Next |
---|---|---|---|
Advanced Topic: Styling | The Doco Manual | The Doco Manual | Advanced Topic: Variable Substitutions |
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 1 | Cell 2 | Cell 3 | Cell 4 |
---|---|---|---|
1 | 2 | 3 | 4 |
1 | 3 | 4 | |
1 | 2 | 4 | |
1 | |||
2 | 4 |
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.
Previous | Up | Top | Next |
---|---|---|---|
Advanced Topic: Styling | The Doco Manual | The Doco Manual | Advanced Topic: Variable Substitutions |