Show Menu
Cheatography

The Ultimate Markdown Cheat Sheet by

Markdown Cheat Sheet

HEADERS

Heading Level 1
========
Heading Level 2
------­-----
Another way:
# Header1
## Header2
### Header3
...

LINKS & LINK TO A SECTION

Text that will link to a website.
Text that will link to the section.

This will link the text to the "­Section With Spaces­" header.
You can also organize all your links like this:
[math.s­ta­cke­xch­ang­e.c­om][1]
[link.n­um­ber.tw­o][2]

[1]: http:/­/ma­th.s­ta­cke­xch­ang­e.com/
[2]: http:/­/we­bsi­te.com

IMAGES

![Image of dog] (https­://­www.co­dep­roj­ect.co­m/K­B/G­DI-­plu­s/I­mag­ePr­oce­ssi­ng2­/fl­ip.jpg)

TABLE OF CONTENTS

You can insert a table of contents using the marker [TOC]

FOOTNOTES

You can create footnotes like this[^­foo­tno­teN­ame].

[^foot­not­eName]: Here is the text of the footnote.
Every time you create a footnote it automa­tically sets the text at the bottom of the page and link them together.
 

PARAGRAPHS < p >

Paragraphs are lines of text
(single returns are collapsed into a space)

Blank lines indicate a new paragraph

TEXT EFFECTS

**bold**
bold
*italic*
italic
~~stri­ket­hro­ugh~~
strike­through

UNORDERED LIST < ul > < li >

* First bullet
* Second bullet
* * Second.1 bullet

ORDERED LIST < ol > < li >

1. First item
2. Second item
3. Third item

TABLES

| Item | Value | Qty |
| :------- | ----: | :---: |
| Computer | $1600 | 5 |
You can specify alignment with
:
at one or both sides

FLOWCHARTS

st=>start: Start
e=>end
op1=>o­per­ation: My Operation
sub1=>­sub­rou­tine: My Subroutine
cond=>­con­dition: Yes
or No?:>h­ttp­://­www.go­ogl­e.com
io=>in­put­output: catch someth­ing...
 
st->op­1->cond
cond(y­es)­->i­o->e
cond(n­o)-­>su­b1(­rig­ht)­->op1
You can have more info at: http:/­/fl­owc­har­t.j­s.org/
 

CODE

Simple html < code > text: `code`
Code block (< pre >) in a certain language:
``` javascript
if (isBad) {
return false
}
```

HORIZONTAL RULE < hr />

---
- - -

BLOCK QUOTE

> This is a
> blockquote

ADDING ICONS

#### <i class=­"­ico­n-f­ile­"­></­i> Create a document
This would add the icon before the text

KEYBOARD KEYS

<kb­d>C­trl­+Sh­ift­+F1­</k­bd>

DEFINITION LIST

Belongs to this term
: This definition
First, write the syntax for the definition

SEQUENCE DIAGRAMS

Andrew­->C­hina: Says Hello
Note right of China: China thinks­\nabout it
China-­->A­ndrew: How are you?
Andrew­->>­China: I am good thanks!
               
 

Comments

From the Markdown Cheat Sheets available, this one suits best for me :).

Add a Comment

Your Comment

Please enter your name.

    Please enter your email address

      Please enter your Comment.

          Related Cheat Sheets

          Sublime Text 2 Windows Keyboard Shortcuts
          Wikipedia Cheat Sheet
          Markdown Cheat Sheet