Help:Tutorial/4

From PSwiki
< Help:Tutorial
Revision as of 02:10, 5 June 2010 by Seytra (talk | contribs) (typo)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Psicon.png
PSWiki-Tutorial
    ■ ■ ■ ■ ■ ■ ■   4/7  
Psicon.png

← Previous | ↑ Top | Next →

To arrange information clearly or for creating complex layouts you can use tables. They might look a little frightening at first sight, but don't let that discourage you - it's farily easy once you've tried once or twice.

A table is opened by
{|
and closed with
 |}
, each in a separate line.

In between you can use pipes (|) at the beginning of a line to create a new table cell (column).

A pipe followed by a hyphen (|-) triggers a new table row.

Example

{|
 | A1
 | B1
 | C1
 |-
 | A2
 | B2
 | C2
 |-
 | A3
 | B3
 | C3
 |}
     results in     
A1 B1 C1
A2 B2 C2
A3 B3 C3


Continue ...