Help:Table
From IT frameworks
These help-pages are for a large part based on the help-pages on the english Wikipedia. Check them out for a more complete set of help-pages, but keep in mind that not everything there is applicable here.
You can create tables either by using regular html-syntax or the wiki-syntax. This page gives a very short introduction to the wiki-syntax.
Creating a table
The code for the default table as used on Wikipedia looks something like this:
{| border="1" cellpadding="2"
|-
! header 1
! header 2
! header 3
|-
| row 1, cell 1
| row 1, cell 2
| row 1, cell 3
|-
| row 2, cell 1
| row 2, cell 2
| row 2, cell 3
|}
The resulting table looks like this:
| header 1 | header 2 | header 3 |
|---|---|---|
| row 1, cell 1 | row 1, cell 2 | row 1, cell 3 |
| row 2, cell 1 | row 2, cell 2 | row 2, cell 3 |
Just fill inn the content where you want to.
More information
Tables can be used in a great variety of ways. For (a lot) more information we recommend that you take a look at the help-page on Wikipedia.