Skip to content

Instantly share code, notes, and snippets.

@jekkilekki
Created September 7, 2015 06:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jekkilekki/53cd4a4a0a818d274b42 to your computer and use it in GitHub Desktop.
Save jekkilekki/53cd4a4a0a818d274b42 to your computer and use it in GitHub Desktop.

https://guides.github.com/features/mastering-markdown/

#Heading 1 # Heading 1

Heading 2

## Heading 2

Heading 3

### Heading 3

Heading 4

#### Heading 4 #####Heading 5 ##### Heading 5 ######Heading 6 ###### Heading 6

Paragraphs are simply typed.

Blockquotes

> Blockquotes
  • *Italics* Italics
  • **Bold** Bold
  • **Bold _and_ italic** Bold and italic
  • ~~Strikethrough~~ Strikethrough
* Unordered list item 1
* Unordered list item 2
- Unordered list item 1
- Unordered list item 2
1. Ordered list item 1
2. Ordered list item 2
1. Nested lists
  1. Can be built
  2. by indenting
    * List items
    * by TWO spaces
- [x] Task lists
- [x] with complete
- [ ] and incomplete items
  - [x] may also 
  - [ ] be nested
  • Single line of code surrounded by `
  • Block of code surrounded by ```

[Link text](http://www.linkURL.com)

GitHub Flavored Markup (GFM)

  • Ignores_underscores_in_words (instead of italicizing them)
    • To emphasize a portion, use *
  • Has URL autolinking
  • Strikethrough with ~~Two tildes~~
  • Fenced code blocks (4 spaces at the beginning of each line)
    • Or just wrap in ``` (no spacing needed)
  • Syntax highlighting
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment