Table markup
From Retro CDN
Revision as of 06:58, 28 February 2018 by Black Squirrel (talk | contribs) (Created page with "'''← Help: Contents''' This page is a basic guide for creating tables using wiki markup. ==Table== The table itself is defined by: <nowiki>{|</nowiki> ''params'...")
This page is a basic guide for creating tables using wiki markup.
Table
The table itself is defined by:
{| params |}
Instead of params, you can put any parameters you choose that would normally go into a HTML table. Common examples used in many of the wiki's table tables is align="center" or border="1".
- Careful: You must include the space between {| and params, or the first parameter gets ignored.
Caption
The caption is generated by:
|+ content
The caption must go on its own line to be recognized by the wiki parser engine.
Row
A row of cells is started like this:
|-
The code must be on its own line, and serves the same purpose as the TR tags.
Header
A header cell is created like this:
! content
Each cell must go on its own line. This takes the place of the TH tag. If you want to assign parameters to your cell, they will go like this:
! params | content
Make sure to have a space between the pipe and the parameters!
Cell
Normal table cells (TD) are created like this:
| content
These are similar to header cells, except they use the pipe character instead of an exclamation point. Again, each cell must go on its own line. If you want to assign parameters to a cell, they go between two pipes:
| params | content
Example
The following example combines all of the previous examples:
{| align="center" border="1" |+ Caption Here |- ! Header 1 ! Header 2 ! Header 3 |- | Row 1, Col 1 | Row 1, Col 2 | Row 1, Col 3 |- | Row 2, Col 1 | Row 2, Col 2 | Row 2, Col 3 |- | colspan="2" | Row 3, Cols 1-2 | Row 3, Col 3 |}
And here is the table in its processed form:
Header 1 | Header 2 | Header 3 |
---|---|---|
Row 1, Col 1 | Row 1, Col 2 | Row 1, Col 3 |
Row 2, Col 1 | Row 2, Col 2 | Row 2, Col 3 |
Row 3, Cols 1-2 | Row 3, Col 3 |