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:
2.Formatting Syntax
*Hello*
_Hello_
**Hello World**
__Hello World__
__How are you?__
Result:
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
4.Link Syntax
[VLR.gg](https://www.vlr.gg/)
Result:
5.Image Syntax
![README.md](markdown-completion.png)
Result:
6.Blockquotes Syntax
> CSGO
> > Counter Strike:Global Offensive
> * Valo
> * Valorant
Result:
7.Table Syntax
| Name | Employee Age |
| ----------- | ----------- |
| Ayush | 26 |
| Vikram | 28 |
Result:
Arigato Gozaimasu ✌