Help:Table

From TinWiki.org

Tables are useful for organizing elements on the page. Creating tables using wiki code is reasonably simple.

What is to appear in the table is surrounded by
{|
and
|}

these elements must be allowed to be at the beginning of their own lines (like above).

In addition to the surrounding elements, each cell in the table must be written as a line beginning with what is called a pipe, which is a vertical bar like this:
|

Each new line that begins with a pipe creates a new cell. To create a new row underneath the first one, in the table, there needs to appear a line with the following element:
|-

The above is the basic method for creating a table using wiki code. In addition to the basics, there are several settings and adjustments that can be made.

Some settings

If the table is to have a visible border around its cells, the following should be added on the very first line of the table wiki code:
border=1

...so that the first line appears like this:
{| border=1

If the table is to not have visible borders, the setting should be 0 instead of 1.

Examples

This
{| border=1
| first row, first cell
| first row, second cell
|-
| second row, first cell
| second row, second cell
|}

wiki code will appear on the page like this

first row, first cell first row, second cell
second row, first cell second row, second cell