109-marzouk / Basic-markdown

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

What exactly is Markdown?

It is a lightweight markup language with a plain text formatting syntax. It is platform independent and is easy to use. It is used for github, blog posts and in websites. You can write it any text editor like VScode.

Things you format with Markdown?

  • Headings
  • Links
  • Blocks of code
  • Images
  • Blockquotes....and more

Let's learn about markdown...

1. Headings

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

2. Italics

use simple asterisk to make your text italic. or you can use underscore

3. Bold

Use double asterisk for bold.

you can also use double underscore for bold

4. Strikthrough

Use '~~' for strikthrough

This text is strikethrough

5. Horizontal Rule



Use '---' or '___(triple underscore)' for horizontal rule.

6. Blockquote

Use greater than symbol for blockquote. It gives a background and blue line on the left side.

7. Links

Link

8. Unordered lists

  • Element 1
  • Element 2
    • element 1
    • element 2
  • Element 3

9. Ordered lists

  1. Item 1
  2. Item 2
  3. Item 3

10. Image

Markdown Logo

Github Markdown

Code Blocks

npm install

npm start
    function add(num1, num2) {
        return num1 + num2;
    }
    def add(num1, num2):
        return num1 + num2
    

Tables

NAME EMAIL
Zylith xyz@gmail.com
Zelan abc@gmail.com

Task Lists

  • Task 1
  • Task 2
  • Task 3

About