Markdown cheatsheet

Typography

Headings

# h1 Heading
## h2 Heading
### h3 Heading
#### h4 Heading
##### h5 Heading
###### h6 Heading

Horizontal Rules

Any of the following:

  * ___: three consecutive underscores
  * ---: three consecutive dashes
  * ***: three consecutive asterisks

Body Copy

Body copy written as normal, plain text will be wrapped with <p></p> tags in the rendered HTML.

Emphasis

*italics*
**bold**
**bold and _italics_**
~~scratch~~

Code

[I'm an inline-style link](https://www.google.com)
[I'm an inline-style link with a tooltip/title](https://www.google.com "Google's Homepage")
[I'm a reference-style link][Arbitrary case-insensitive reference text]
[I'm a relative reference to a repository file](../blob/master/LICENSE)
[You can use numbers for reference-style link definitions][1]
Or leave it empty and use the [link text itself].

URLs and URLs in angle brackets will automatically get turned into links.
http://www.example.com or <http://www.example.com> and sometimes
example.com (but not on Github, for example).

Some text to show that the reference links can follow later.

[arbitrary case-insensitive reference text]: https://www.mozilla.org
[1]: http://slashdot.org
[link text itself]: http://www.reddit.com

Named Anchors

Named anchors enable you to jump to the specified anchor point on the same page. For example, each of these chapters:

# Table of Contents
  * [Chapter 1](#chapter-1)
  * [Chapter 2](#chapter-2)
  * [Chapter 3](#chapter-3)

Images

Images have a similar syntax to links but include a preceding exclamation point.
![Minion](http://octodex.github.com/images/minion.png)
or
![Alt text](http://octodex.github.com/images/stormtroopocat.jpg "The Stormtroopocat")
Like links, Images also have a footnote style syntax
![Alt text][id]
With a reference later in the document defining the URL location:
[id]: http://octodex.github.com/images/dojocat.jpg "The Dojocat"


Unordered Lists

A list of items in which the order of the items does not explicitly matter.
You may use any of the following symbols to denote bullets for each list item:

• valid bullet
- valid bullet
+ valid bullet

Ordered Lists

A list of items in which the order of items does explicitly matter.

  1. Lorem ipsum dolor sit amet
  2. Consectetur adipiscing elit
  3. Integer molestie lorem at massa
  4. Facilisis in pretium nisl aliquet
  5. Nulla volutpat aliquam velit
  6. Faucibus porta lacus fringilla vel
  7. Aenean sit amet erat nunc
  8. Eget porttitor lorem

Code

Wrap inline snippets of code with `
Or indent several lines of code by at least four spaces
Use "fences" ``` to block in multiple lines of code.
"GitHub Flavored Markdown" also supports syntax highlighting. To activate it, simply add the file extension of the language you want to use directly after the first code "fence", %%``` js%%, and

Tables

Tables are created by adding pipes as dividers between each cell, and by adding a line of dashes (also separated by bars) beneath the header. Note that the pipes do not need to be vertically aligned.

| Option | Description |
| ------ | ----------- |
| data   | path to data files to supply the data that will be passed into templates. |
| engine | engine to be used for processing templates. Handlebars is the default. |
| ext    | extension to be used for dest files. |

Aligned text

Adding a colon on the right side of the dashes below any heading will right align text for that column.

| Option | Description |
| ------:| -----------:|

Blockquotes

For quoting blocks of content from another source within your document.
Add > before any text you want to quote.