Cheatsheet for markdown files syntax.
Visit the projectpage for a full syntax documentation.
# h1
## h2
### h3 {#with-hash}
...
**bold**
_italic_
´code´
> blockquotes
* Item 1
* Item 1.1
* Item 2
1. Item 1
1.1 Item 1.1
2. Item 2
| Left | Center | Right |
| :----- | :-----: | -----: |
| Cell1 | Cell2 | Cell3 |
http://example.com
or
[Link-Text](http://example.com "Title-Text")
or (reference-style)
[Link-Text][Link-Id]
[Link-Id][]
...
[Link-Id]: http://example.com "Title-Text"
![Alt-Text](http://example.com/example.png "Title-Text")