Headings
There are two levels of headings:
== Top Level ==
=== Second Level ===
or
Top Level
========= <- 3 or more '=' characters
Second Level
------------ <- 3 or more '-' charaters
List
# Numbered
# Numbered
- Numbered
- Numbered
1. First line
2. Second line
- Sub
inbetween
5. Forth line
- First line
- Second line
inbetween
- Forth line
The lines must not be indented to start a list. The indention level is not limited. There has to be exactly one whitespace between "-" and the first word. Precise numbers are used even if out of order (you could number a list backward).
Code Blocks
[ code from="index.php"]
some more code
[ /code]
NOTE: Actually the blank before
code and
/code must be removed - but we have some trouble with code blocks inside of code blocks ;-(
from index.php
some more code
All utf8 chars (including all sorts of quotes or html-chars) are allowed.
NOTE: As with version v0.08 the
indented code blocks have been depreciated.
Links
External
Lines starting with http:// will create a clickable external link:
www.pixtur.deE-Mail
Text starting with mailto: generates a link to your Mail-Editor:
Send to mailto:thomas@pixtur.de
Send to
thomas@pixtur.deImages
Advanced syntax
[[image:234|?options?|?description?]]
Whereas
?options? could be a comma separated combination of the following:
left - float left
right - float right
framed - display with description as subtitle. Use image-description, if no description is given within link
maxsize=234 - will use gd2 to scale this down to 234 pixels if too large.
e.g.:
[[image:234|maxsize=320,framed,right]]
Tables
|Header |Header |
|Cell |Cell |
The first line is always treated as table header. There must not be any characters before or after the pipes. Links and other formatting can be used inside cells.
More formating
''emphasize'' # two quotes
`monospace / code` # back quotes
*bold text*
V[sub]speed[/sub]
~~striked~~
emphasizemonospace / codebold textV
speedstrikedHorizontal Line
______ <- 3 or more '_' (underscore) characters
Quotes
[quote from="Mark Twain" url="http://www.twain.com"]
Something
[/quote]
Something
from Mark Twain
Note: The "from=" and "url=" statements are optional.