Changes in WikiSyntax
Editor Comment
Fixed error regaring bold and italic syntax
Revision Differences of Revision 15
## Basics ¶¶
The original markdown specification is [here](http://daringfireball.net/projects/markdown/). This site is just a collection of examples. ¶
¶
### Headlines ¶
¶
#### Code: ¶
~~~~~~~~~~~~~~~ ¶
# Main Topic ¶
## Sub Topic ¶
### Sub Sub Topic ¶
~~~~~~~~~~~~~~~ ¶
¶
### Paragraphs ¶
¶
#### Code: ¶
~~~~~~~~~~~~ ¶
This is a simple paragraph. ¶
It continues on on this line. ¶
¶
This is a new paragraph. ¶
To get a linebreak inside a paragraph ¶
end the line with two spaces. ¶
~~~~~~~~~~~~ ¶
¶
#### Rendered: ¶
This is a simple paragraph. ¶
It continues on on this line. ¶
¶
This is a new paragraph. ¶
To get a linebreak inside a paragraph ¶
end the line with two spaces. ¶
¶
### Emphasis ¶
¶
#### Code: ¶
~~~~~~ ¶
*This is
¶
**This is
¶
***This is bold and italic*** ___This too___ ¶
~~~~~~ ¶
¶
#### Rendered: ¶
*This is
¶
**This is
¶
***This is bold and italic*** ___This too___ ¶
¶
### Lists ¶
¶
#### Code: ¶
~~~~ ¶
* Bulleted list ¶
* Can also be nested ¶
* Item 2 ¶
* Item 3 ¶
¶
1. Numbered list ¶
1. Nest this too ¶
1. Item 2 ¶
1. Item 3 ¶
~~~~ ¶
¶
#### Rendered: ¶
* Bulleted list ¶
* Can also be nested ¶
* Item 2 ¶
* Item 3 ¶
¶
¶
1. Numbered list ¶
1. Item 2 ¶
1. Item 3 ¶
¶
¶
### Links and Images ¶
¶
#### Code: ¶
~~~~ ¶
This is an [external link](http://www.sf.net). ¶
¶
This is an internal link to the WikiSyntax page. ¶
¶
This includes an image: ![Widelands Logo](/wlmedia/img/Logo.png) ¶
~~~~ ¶
¶
#### Rendered: ¶
This is an [external link](http://www.sf.net). ¶
¶
This is an internal link to the WikiSyntax page. ¶
¶
This includes an image: ![Widelands Logo](/wlmedia/img/Logo.png) ¶
¶
## Extras ¶
¶
This wiki supports some stuff beyond the canonical markdown specification, for the complete reference, see [here](http://www.freewisdom.org/projects/python-markdown/Extra). We only list some examples. ¶
¶
### Tables ¶
¶
#### Code: ¶
¶
~~~~~ ¶
Header 1 | Header 2 ¶
------- | -------- ¶
Value 1 | Value 2 ¶
Value 3 | Value 4 ¶
Value 5 | Value 6 ¶
~~~~~ ¶
¶
#### Rendered: ¶
¶
Header 1 | Header 2 ¶
------- | -------- ¶
Value 1 | Value 2 ¶
Value 3 | Value 4 ¶
Value 5 | Value 6 ¶
¶
### Footnotes ¶
¶
#### Code: ¶
~~~~~ ¶
Footnotes[^1] have a label[^label] and a definition[^!DEF]. ¶
¶
[^1]: This is a footnote ¶
[^label]: A footnote on "label" ¶
[^!DEF]: The definition of a footnote. ¶
~~~~~ ¶
¶
#### Rendered: ¶
Footnotes[^1] have a label[^label] and a definition[^!DEF]. ¶
¶
[^1]: This is a footnote ¶
[^label]: A footnote on "label" ¶
[^!DEF]: The definition of a footnote. ¶
¶
### Table of Contents ¶
¶
~~~~~~~~ ¶
[TOC] ¶
¶
¶
~~~~~~~~~ ¶
Note that the two empty lines after `[ TOC ]` are important. ¶
¶
¶
## Custom tags ¶
¶
The Widelands Hompage also uses some custom tags, which are neither part of markdown nor of it's unofficial extensions. ¶
¶
### SVN Revision tags ¶
¶
Write `svn : r1234` (without the spaces) to get a link to the revision in the svn history like so: svn:r1234. ¶
¶