Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save explorest/e198bda6de615f170fcd3b49550cce83 to your computer and use it in GitHub Desktop.
Save explorest/e198bda6de615f170fcd3b49550cce83 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