Skip to content

Instantly share code, notes, and snippets.

@ltcdnunez
Last active August 29, 2015 14:05
Show Gist options
  • Save ltcdnunez/222d3035f1815f6f53a7 to your computer and use it in GitHub Desktop.
Save ltcdnunez/222d3035f1815f6f53a7 to your computer and use it in GitHub Desktop.
Markdown Cheatsheet

Markdown Cheatsheet

Headings

Create headings like so:

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Text Formatting

You can **bold** and *italicize* text like this. It also works with _underscores_.

You can bold and italicize text like this. It also works with underscores.

You can also quote text:

> Don't quote me. --Some guy

Don't quote me. --Some guy

Or even format blocks of code. Just surround the code block with three backticks: ```

<p>Hello, world.</p>

You can even display code inline.

Welcome to `<strong>Thunderdome</strong>`!

Welcome to <strong>Thunderdome</strong>!

Lists

Create lists of bullet points:

* Eggs
* Bacon
* Rat poison
  • Eggs
  • Bacon
  • Rat poison

Or create numbered lists:

1. Learn Markdown
1. Put Markdown skills into practice
1. Profit
  1. Learn Markdown
  2. Put Markdown skills into practice
  3. Profit

Links

You can link to websites like [Google](http://www.google.com/).

You can link to websites like Google.

Miscellaneous

Create horizonal lines to break up sections:

Here's one section
***
Here's another

Here's one section


Here's another

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment