The content inside tables can contain internal and external links, and these kinds of text formatting:
- Blinking
- Bold
- Colored
- Italic
- Plain
- Underlined
- Underlined Bold Italic
Use this code in a page:
{|
| CELL1 || CELL2
| CELL1 || CELL2
|}
To create this:
Or use this code in a page:
{|
| CELL1 || CELL2
|-
| CELL1 || CELL2
|}
To create this:
The line that starts with
|- is a comment line. You can type some text after it which will only be visible when viewing the source:
Use this code in a page:
{|
| CELL1 || CELL2
|- This is a comment.
| CELL1 || CELL2
|}
To create this:
Tables can have a specially formatted title row created by adding a pipe followed by a plus symbol and a space before the title text (example:
|+ Title), and can contain internal and external
wiki links.
Use this code in a page:
{|
|+ TITLE
| *HEADER1* || *HEADER2* || *HEADER3*
|-
| CELL1 || CELL2 || CELL3
|-
| CELL1 || CELL2 || CELL3
|-
| CELL1 || CELL2 || CELL3
|-
| CELL1 || || CELL3
|}
To create this:
TITLEHEADER1 | HEADER2 | HEADER3 |
CELL1 | CELL2 | CELL3 |
CELL1 | CELL2 | CELL3 |
CELL1 | CELL2 | CELL3 |
CELL1 | | CELL3 |
Or use this code in a page:
{|
|+ TITLE
| *HEADER1* || *HEADER2* || *HEADER3*
| CELL1 || CELL2 || CELL3
| CELL1 || CELL2 || CELL3
| CELL1 || CELL2 || CELL3
| CELL1 || || CELL3
|}
To create this:
TITLEHEADER1 | HEADER2 | HEADER3 |
CELL1 | CELL2 | CELL3 |
CELL1 | CELL2 | CELL3 |
CELL1 | CELL2 | CELL3 |
CELL1 | | CELL3 |
See also the
WoaS::Help::Table of Contents page.