Markdown Syntax Cheat Sheet
===========================
URL: http://hw.libsyn.com/p/8/3/3/8339a864bb8faa83/Markdown_Cheat_Sheet.pdf
Markdown Syntax Cheat Sheet
---------------------------
based on Markdown Syntax documentation for Markdown 1.0.1, created by John Gruber for full syntax, visit http://daringfireball.net/projects/markdown/syntax
Markdown Syntax Cheat Sheet v1.0, design by Mark Boszko
Text cleanup version by Mark Stinson
---
Paragraphs and Breaks
---------------------
Markdown accepts text on consecutive lines
as a hard-wrapped paragraph.
Put a blank Line in between to start a new graph.
If you want a break:
end your line with two spaces.
Hard to see in print, but it’s there.
---
Headers
-------
h1 and h2 ›Setext-style
== -- ›any number of underlines works
# h1 ›atx-style
## h2 ›opening hashes determine header level
...
###### h6 ## ›closing hash(es) optional
---
Blockquotes
-----------
> Blockquote.
>
> > Second paragraph in the blockquote, nested.
>
> ## This is an h2 in a blockquote
---
Phrase Emphasis
---------------
*em* or _em_ or un*fucking*believable
**strong** or __strong__
***em and strong*** or ___em and strong___
---
Lists
-----
* Candy. or + Candy. or - Candy.
* Gum. + Gum. - Gum.
* Booze. + Booze. - Booze.
1. Ordered ›start the list with number 1
2. List ›otherwise number order doesn’t matter
3. Items
* A list item.
With multiple paragraphs.
> And a blockquote
* Another List item with
a hard wrapped 2nd line.
10 PRINT "and a code block"
---
Horizontal Rules
----------------
--- or *** or ___ ›on a line by itself
---
Links
-----
An [inline link](http://xrl.us/ "optional title").
A [reference link][id]. ›[id] defined elsewhere
[id]: http://example.com/ "optional title"
or
[id]: (optional title)
or
[id]: http://example.com/longish/path/to/resource
"optional title"
[Google][] ›implicit link name shortcut
[Google]: http://google.com
›creates linked URL
›creates encoded mailto
---
Images
------

![Alt text][id] ›refrence-style
[id]: url/to/image "Optional title attribute"
---
Code
----
Backticks format and auto-escape &, < and > in
code like `