Overview
This markdown cheat sheet provides a quick overview of all the markdown syntax elements
Basic Syntax
Following are some basic elements of markdown
Heading
# H1
## H2
### H3
Bold
*** bold text ***
Output :-
bold text
Italic
*italic text*
Output :-
italic text
Blockquote
> Blockquote
Output :-
Blockquote
Order list
1. first
2. second
3. third
Output :-
- first
- second
- third
Unordered List
- first
- second
- third
Output :-
- first
- second
- third
Inline Code
Inline `code`
Output :-
inline code
Horizontal Rule
---
Link
[Ui Color Picker](https://uicolorpicker.com/)
Output :-
Image
![Image](https://learncodeonline.in/mascot.png)
Output :-
Table
| syntax | Description |
| ------ | ----------- |
| Header | Title |
| paragraph | Text |
Output :-
syntax | Description |
Header | Title |
paragraph | Text |