oncode
1/29/2013 - 8:19 PM

Cheatsheet for markdown files syntax.

Cheatsheet for markdown files syntax.

Markdown cheatsheet

Visit the projectpage for a full syntax documentation.

Headers

# h1
## h2
### h3 {#with-hash}
...

Formatting

**bold**
_italic_
´code´
> blockquotes

Lists

* Item 1
  * Item 1.1
* Item 2

1. Item 1
   1.1 Item 1.1
2. Item 2

Tables

| Left   | Center  | Right  |
| :----- | :-----: | -----: |
|  Cell1 |  Cell2  | Cell3  |

Links

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"

Images

![Alt-Text](http://example.com/example.png "Title-Text")