Show Menu
Cheatography

Markdown Cheat Sheet (DRAFT) by

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Headers

# H1
<h1­>H1­</h­1>
## H2
<h2­>H2­</h­2>
### H3
<h3­>H3­</h­3>
...
...
###### H6
<h6­>H6­</h­6>
Alt-H1
======
<h1­>Al­t-H­1</­h1>
Alt-H2
--------
<h2­>Al­t-H­2</­h2>

Code

Inline `code`
```language
code
```

Horizontal Rule

***
Three or more
---
creates a horizontal
___
rule
 

Emphasis

*italic*
italic
_italic_
italic
**bold**
bold
__bold__
bold
~~stri­ket­hro­ugh~~
strike­through
**one and _two_**
one and two

Images

<img src="ur­l" title=­"­tit­le" alt="alt text">
![alt text][ref]
[ref]: url "­Tit­le"
<img src="ur­l" title=­"­tit­le" alt="alt text">

Tables

Tables using pipes and dashes, colons can be used to align columns.

Column A | Column B | Column C
------­---­|:-­---­---­-:|­---­---­----:
Row 1  ­ ­ ­ ­  | center­ed  | right-­aligned
 

Lists

1. First Ordered List Item
2. Another Item
* Unordered sub Item (indent by 2)
1. Actual numbers don't matter.
1. Ordered sub item (indent by 2)
- Unordered items can start with '*'. '-' or '+'

Links

<a href="u­rl">­tex­t</­a>
[text][reference]
[reference]: url
<a href="u­rl">­tex­t</­a>
[text][#]
[#]: url
<a href="u­rl">­tex­t</­a>
url
<a href="u­rl">­url­</a>
<ur­l>
<a href="u­rl">­url­</a>

Blockq­uotes

> Block Quotes
> > Multiple Levels of Quotation