What is Markdown?
Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents. you can use markdown to write Github Readme.md , technical documentation, and many more...
Basic Syntax used in MD
๐ Heading
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Output :
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
๐ Italic
*Italic text*
Output :
Italic text
๐ BOLD
*** Bold ***
Output :
Bold
๐ List
Ordered List
> 1. First item
2. Second item
3. Third item
Output :
- First item
- Second item
- Third item
Unordered List
> - First item
- Second item
- Third item
Output :
- First item
- Second item
- Third item
๐ Code
` Code `
Output :
Code
๐ Horizontal Line
---
Output :
๐ Links
[Click Here](HTTP://www.google.co.in)
Output :
๐ Image
![image](./image.jpg)
Or
![image](https://learncodeonline.in/mascot.png)
Output :
๐ Strikethrough
<s>Hey there</s>
Output :
Hey there
๐ Highlight
Highlight the <mark> important </mark> one.
Output :
Highlight the important one.
๐ Subscript
h<sub>2</sub>0
Output :
h20
๐ Superscript
X<sup>2</sup>
Output :
X2