Markdown Cheat Sheet

Markdown Cheat Sheet

Markdown is a syntax that is used to format text on web pages. You're "formatting" text when you add bold, italics, numbered lists, bullet points, headings, and so on. You can also think of it as a text to HTML converter tool. Its extension is .md.

Different Markdown Syntax:

1.Heading Syntax

# Heading 1
## Heading 2
### Heading 3
..
..
..
..
###### Heading 6

Result: Screenshot (168).png

2.Formatting Syntax

*Hello*
_Hello_

**Hello World**
__Hello World__

__How are you?__

Result: Capture.PNG

3.List Syntax

1. One
2. Two 
2. Three  
    1. One
    3. Three

- One
- two
    - three

- Assignment 1
    - Proj 1
    - Proj 2
    - Proj 3

Result Capture.PNG

[VLR.gg](https://www.vlr.gg/)

Result: Capture.PNG

5.Image Syntax

![README.md](markdown-completion.png)

Result: markdown-completion.png

6.Blockquotes Syntax

> CSGO
> > Counter Strike:Global Offensive

> * Valo
> * Valorant

Result: Capture.PNG

7.Table Syntax

| Name | Employee Age |
| ----------- | ----------- |
| Ayush | 26 |
| Vikram | 28 |

Result: Capture.PNG


Arigato Gozaimasu ✌