Tables can be created using the tags "table", "tr", "td", and optionally "th", as follows:
Code: Select all
[table]
[tr]
[th]Header 1[/th]
[th]Header 2[/th]
[/tr]
[tr]
[td]Row 1, Cell 1[/td]
[td]Row 1, Cell 2[/td]
[/tr]
[tr]
[td]Row 2, Cell 1[/td]
[td]Row 2, Cell 2[/td]
[/tr]
[/table]
which produces as a result
Header 1 |
Header 2 |
Row 1, Cell 1 |
Row 1, Cell 2 |
Row 2, Cell 1 |
Row 2, Cell 2 |
There are no options to control general formatting of the table. What you get is what's shown here -- just a bit of white space to separate columns. Table cells, surrounded by td and /td, can contain internal formatting tags such as URL's, images, font size and color.
Tables can also be nested, by making the contents of a [
td] cell be another [
table] block, for example as used by Adalbert at
viewtopic.php?p=301109#p301109 .
--Rik