Markdown cheatsheet
The Extra variant of the Markdown syntax is used here.
Phrase Emphasis
*italic* **bold**
_italic_ __bold__
Links
An [example](http://url.com/ "Title")
Images

Headers
# Header 1
## Header 2
###### Header 6
Lists
Ordered, without paragraphs:
1. Foo
2. Bar
Unordered, with paragraphs:
* A list item.
With multiple paragraphs.
* Bar
Blockquotes
> Email-style angle brackets
Code Spans
`<code>` spans are delimited by backticks.
You can include literal backticks like `` `this` ``.
Preformatted Code Blocks
Indent every line of a code block by at least 4 spaces or 1 tab.
This is a normal paragraph.
This is a preformatted
code block.