MarkDown Cheat Sheet
Markdown cheat sheet gives you a quick overview of all the Markdown syntax elements.
It doesn’t cover all the cases, so if you need more information about these elements, Please refer the comprehensive guide for markdown syntax
Cheat sheet
Element | Markdown | Output | ||||||
---|---|---|---|---|---|---|---|---|
Headings |
# Heading 1 ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ###### Heading 6 |
Heading 1Heading 2Heading 2Heading 2Heading 2Heading 2 |
||||||
Paragraphs |
This is a paragraph |
This is a paragraph |
||||||
Ordered List |
1. First Item 2. Second Item 3. Third Item |
|
||||||
Unordered List |
- First Item - Second Item - Third Item |
|
||||||
Definition List |
First Term : Definition of first term. |
|
||||||
Blockquotes | > This is a quote |
This is a quote |
||||||
Code Blocks |
› › › › function test() { › › › › › › console.log("markdown"); › › › › } |
|
||||||
Horizontal Rule | --- |
|||||||
Table |
Header 1 | Header 2 ----------|---------- Cell 11 | Cell 12 Cell 21 | Cell 22 |
|
||||||
Bold | I am **bold** |
I am bold | ||||||
Italic | I am *italic* |
I am italic | ||||||
Strikethrough | I am ~~strike~~ |
I am |
||||||
Link |
[example link](http://example.com/)
|
example link | ||||||
Image |
![Blog](/img/logo.png)
|
|||||||
Code | code `syntax` | code syntax |