wiki : syntax
This page show the basics of wiki syntax. For a full explaination of a particular type of syntax, click a link on the right
For a very brief hints, see hints.
Headings
To create a heading place two or more equal symbols (=) before and after the heading. The more equal signs you use the smaller the heading will be.
For example :
== Large Heading == === Medium Heading === ==== Small Heading ====
Text Styles
| italics | ''italics'' | Note, these are two single apostrophes. more... |
| bold | ++bold++ | more... |
| underlined | __underlined__ | Two underscores. more... |
| strike | --strike-- | more... |
Paragraphs and Line Breaks
Start a new paragraph by leaving a blank line This is a new paragraph. more... | Start a new paragraph by leaving a blank line This is a new paragraph. |
| A line break Note this is not the same as a new paragraph There is three ways to create a line break That's all of them. more... | A line break\\ Note this is not the same as a new paragraph<br> There is three ways to create a line break<br/> That's all of them. |
| Horizontal Line
Use sparingly, as you should use headings to break up a page. more... | Horizontal Line ---- Use sparingly, as you should use headings to break up a page. |
Links
The examples below link to a page called "nowhere", which doesn't exist, and to a page called "sandbox", which does exist.
| A link to nowhere, and a link to the sandbox | A link to [nowhere], and a link to the [sandbox] |
| Change the name, but still link there. Go play. | Change the name, but still link [there|nowhere]. Go [play|sandbox]. |
Lists
| # Ordered # lists # are easy |
| * And so are * unordered * lists |
| * Indentation ** Is trickier ** The more stars *** The more indented ** Simple as that |
Tables
| Code | Meaning |
|---|---|
| {| | start of a table |
| || | begin a new header cell |
| | | begin a new cell |
| |- | end one row, and begin a new one |
| |} | table end |
All of these have to be at the beginning of a line, but you can squash serval table cells together on one line.
A cell can span multiple lines, however, paragraphs are not created within table cells, so leaving a blank line does not cause a gap. If you do want paragraphs within a table cell, place a block within the cell using {{[ your-text-here ]}}
| {|
|| Hello
|| World
|-
| abc
| 123
|} |
Tables, table rows and table cells can have attributes.
Formatting
A block of text without __wiki__ syntax.Notice how the underscores are not treated as wiki syntax. | {{{
A block of text
without __wiki__ syntax.
} }}Note due to a limitation of PinkWino, the last line should read
"}}}", but there is an extra space.
more...
|
| Comments | Comments <!-- this isn't displayed -->more... |
A block. This is useful inside of a table, to enable paragraphs. (Tables cells do not contain paragraphs by default). | {{[
A block.
This is useful inside of a table,
to enable paragraphs.
Tables cells do not contain
paragraphs by default.
]}}more...
|