What is Markdown and why use it?
Markdown is a plain text formatting syntax designed to make internet writing easier. The Markdown theory is that plain text documents should be readable without tags, but there should still be ways to add text modifiers such as lists, bold, italics, and so on.
Basic heading
SYNTAX
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
OUTPUT
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Bold
SYNTAX
**Bold Using Double Asterisk**
--Bold Using Double Underscore--
OUTPUT
Bold Using Double Asterisk
Bold Using Double Underscore
Italic
SYNTAX
*italic Using Single Asterisk*
_italic Using Single Underscore_
OUTPUT
italic Using Single Asterisk
italic Using Single Underscore
Strike-through
SYNTAX
~~9999rs~~ 1rs
OUTPUT
9999rs 1rs
Ordered List
SYNTAX
1. First item
1. Sub list
2. Sub list
2. Second item
3. Third item
OUTPUT
- First item
- Sub list
- Sub list
- Second item
- Third item
Unordered List
SYNTAX
- First item
- Sub list
- Sub list
- Second item
- Third item
OUTPUT
- First item
- Sub list
- Sub list
- Second item
- Third item
Link
SYNTAX
[Title](url)
[LCO](https://web.learncodeonline.in/)
OUTPUT
Images
SYNTAX
![alt text](image.jpg)
![yellow-blob.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658575635599/imJQGUAt3.png?auto=compress,format&format=webp)
OUTPUT
Horizontal Line
SYNTAX
---
---
---
three horizontal lines will pop-up
OUTPUT
Code
SYNTAX
`code`
(```ignore this bracket```)
OUTPUT
code
ignore this bracket
BlockQuote
SYNTAX
> Yash is Funny :)
OUTPUT
Yash is Funny :)
Haha.. That is all for now. Will see you in next post. Bye