/Markdown

A CheatSheet for Markdown

Markdown CheatSheet

Table of contents

  1. Headings
  2. Text Formatting
  3. Blockquotes
  4. Links
  5. Lists
  6. Images
  7. Code
  8. Tables
  9. Task Lists

Headings

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Text Formatting

This text is italic
This text is italic


This text is strong
This text is strong


This text is strong and italic


This text is strikethrough


Blockquotes

This is a quote


Links

raspberrypi
raspberrypiwithtooltip


Lists

Unordered List

  • Item 1
  • Item 2
    • Nested Item 1
      • Nested Nested Item 1
    • Nested Item 2

Ordered List

  1. Item 1
  2. Item 2
    1. Nested Item 1
    2. Nested Item 2

Images

Markdown Logo


Code

Inline

<p>This is a paragraph</p>


Blocks

Regular

npm install

npm start

JavaScript

function add(num1 + num2) {
  return (num1 + num2);
}

Python

def add(num1 + num2):
  return num1 + num2

Difference

  theme: {
    type: "dark",
+   name: "darkmode",
-   name: "dark",
    usage: "popular",
    isDeprecated: false,
  }

Tables

Name............. .........centered.......... .............rigt-aligned
John Snow john@gmail.com john@gmail.com
Arya Stark arya@gmail.com arya@gmail.com

Task Lists

  • Task 1
  • Task 2
  • Task 3
  • Task 4