Markdown cheatsheet
This cheetsheet will provide a quick overview of Markdown syntax elements.
Heading
- Markdown Syntax
# H1 ## H2 ### H3 ### H4 ### H5 ### H6
- Output
- Markdown Syntax
Bold
- Markdown Syntax
**Bold**
- Output
- Markdown Syntax
Italic
- Markdown Syntax
*Italic*
- Output
- Markdown Syntax
Blockquote
- Markdown Syntax
> blockquote
- Output
- Markdown Syntax
Ordered List
Markdown Syntax
1. First item 2. Second item 3. Third item
- Output
Unordered List
Markdown Syntax
- First item - Second item - Third item
- Output
Code
Markdown Syntax
This is a `code`
- Output
Horizontal Rule
Markdown Syntax
## horizontal rule below this ---
- Output
Link
Markdown Syntax
[My Portfolio](https://www.webdevman.co.in)
- Output
Image
Markdown Syntax
![Image](https://www.webdevman.co.in/static/media/hero.5c8568c2804287a7649865cf23368e5f.svg)
- Output
Table
Markdown Syntax
| Table Heading | Table Heading | | ----------- | ----------- | | Table Data | Table Data | | Table Data | Table Data |
- Output
Strikethrough
Markdown Syntax
~~Strikethrough~~
- Output
Code Block
Markdown Syntax
<h1>This is a heading</h1> <p>This is a paragraph</p>
- Output
This is all from my side. Thanks for reading.