Wiki Markup
Text styles
Italic
This line has italic text. The following, however, will not have any effect: test1/test2/test3This line has /italic text/. The following, however, will not have any effect: test1/test2/test3
Bold
Strong text is enclosed by stars.*Strong* text is enclosed by stars.
Underlined
You might also want to underline something.You might also want to _underline_ something.
Mixed Text
You might add some marked up text even if it contains other markup or spansover multiple lines.
You might add some marked up text /even if it contains _other markup_ or spans over *multiple lines*/.
Small Title
For readability, this section does not contain a preview.=== This line produces a small title ===
Medium Title
For readability, this section does not contain a preview.== This line produces a medium sized title ==
Big Title
For readability, this section does not contain a preview.= This line produces a very big title =
Tables
A table is a little more sophisticated, but still pretty easy. Note that tables do not require a heading, the #Heading tag is optional.| Heading 1 | Heading with markup | Heading 3 | |
|---|---|---|---|
| 1. | More text 1 | More text 2 | More text 3 |
| 2. | This text spans over multiple cells. | ||
| And yet more text | In multiple columns. | ||
#Heading | | Heading 1 | Heading /with/ markup | Heading 3 #Row | # | More text 1 | More text 2 | More text 3 #Row | # ||| This text spans over multiple cells. #Row || And yet more text || In multiple columns.
Links to other pages
Link to other pages in the same Wiki: Simple or CamelCaseWordsYou can also prevent a WikiWord from being linked.
Link to other pages on your homepage: admin/users or This is my link!
Link to external pages: http://debain.org or This is an external link!
Link to other pages in the same Wiki: ->Simple or CamelCaseWords You can also prevent a !WikiWord from being linked. Link to other pages on your homepage: [admin/users] or [admin/users This is my link!] Link to external pages: [http://debain.org] or [http://debain.org This is an external link!]
Preformatted text
If you want to show some text that is not modified by the Wiki, you mark it as such. For example:== This is not changed into a header ==
You can also embed code and preserve indent:
def link(self, text):
text = text[1:-1]
pos = text.find(' ')
if pos == -1:
url = escape(text)
caption = url
Lists
A simple numbered list:- Line 1
- Second one
- Another one.
# Line 1 # Second one # Another one.
Unnumbered list:
- Yes yes
- This may work.
- It might also not work.
* Yes yes * This may work. * It might also not work.
As you might have seen in the table example above, you can also use tables as lists. Cells that contain only a hash ("#") are automatically replaced by a counter. For example:
| 1. | Name: | Samuel |
| 2. | Last Name: | Abels |
| 3. | Homepage: | http://debain.org |
| 4. | Email: | Look here |
#Row | # | Name: | Samuel #Row | # | Last Name: | Abels #Row | # | Homepage: | [http://debain.org] #Row | # | Email: | Look [http://debain.org/about/ here]
