Skip to content

Instantly share code, notes, and snippets.

@Grin941
Last active April 2, 2018 09:04
Show Gist options
  • Save Grin941/f5a06ef57386faeb7b9325e46aca7505 to your computer and use it in GitHub Desktop.
Save Grin941/f5a06ef57386faeb7b9325e46aca7505 to your computer and use it in GitHub Desktop.
See how to apply markdown syntax

Markdown syntax

Header

Unordered list

  • Item 1
  • Item 2
    • Item 2.1
    • Item 2.2

Ordered list

  1. Item 1
  2. Item 2
    • Item 2.1
    • Item 2.2

Emphasis

  • italic text
  • bold text
  • combained italic and bold

Blockquotes

Markdown defined as

a way to style text on the web.

Images

Cute kitty

Links

Markdown guide

Emoji

👍 ✨

See full list emojies here: http://www.emoji-cheat-sheet.com/

Code block

function test() {
 console.log("look ma’, no spaces");
}

Task lists

  • This is a complete item
  • This is an incomplete item

Tables

First Header Second Header
Content cell 1 Content cell 2
Content column 1 Content column 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment