Markdown syntax
Reference: Markdown syntax
Text
New paragraph: leave empty line in between or end line with two spaces |
Par 1
Par 2..
Par 3
|
Par 1 Par 2 Par 3
|
_italic_ or *italic* | italic or italic |
**bold** or __bold__ | bold or bold |
Headers
# Header 1 | Header 1 |
## Header 2 | Header 2 |
### Header 3 | Header 3 |
#### Header 4 | Header 4 |
Lists
1. Item 1
2. Item 2
|
Item 1
Item 2
|
* An item
....with a paragraph (four spaces before)
* Item 2
|
|
Hyperlinks
Een [link](http://www.werk.belgie.be/)
| Een link
|
Blockquotes
> angle brackets
> do the trick
|
angle brackets
do the trick
|
Code spans
use backticks (` ) to make `code spans`
|
`no formatting is applied to this text`
|
no formatting is applied to this text
|
Tables
| cel 1 | cel 2 |
| cel 3 | cel 4 |
|
|
For header cells use * against the cel walls: |
|* coltitle 1 *|* coltitle 2 *|
|* rowtitle *| cel 4 |
|
coltitle 1 |
coltitle 2 |
rowtitle |
cel 4 |
|