Skip to content

Instantly share code, notes, and snippets.

@luvuong-le
Created August 31, 2020 09:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save luvuong-le/2b5f9465cd13329042afff1bccad73d9 to your computer and use it in GitHub Desktop.
Save luvuong-le/2b5f9465cd13329042afff1bccad73d9 to your computer and use it in GitHub Desktop.
Markdown Basic Syntax Sheet

Headings

Heading 1

Heading 2

Heading 3

Heading 6

Emphasis

This is some normal text

This is bold text

This is italic text

Lists

Unordered

  • List Item 1
  • List Item 2
    • List Item 2.1
  • List Item 1
  • List Item 2
    • List Item 2.1

Ordered

  1. List Item 1

  2. List Item 2

  3. List Item 3

    1. List Item 3.1
    2. List Item 3.2
  4. List Item 1

  5. List Item 2

  6. List Item 3

    1. List Item 3.1
    2. List Item 3.2

Links

Text Displayed

Google

Images

Alt

Dog picture

Blockquotes

My favourite quote is:

Quote Line 1

Quote Line 2

Strikethrough

strike this text

Tables

Technology Description Link ⚓️
Some content content content
Some content content content
Some content content content
Some content content content
Some content content content
Some content content content
Some content content content

Inline code

This is a console.log()

Code snippets

const test = "This is a test";

console.log(test);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment