MarkDown Cheat Sheet 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

ElementMarkdownOutput
Headings
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
          

Heading 1

Heading 2

Heading 2

Heading 2

Heading 2
Heading 2
Paragraphs
This is a paragraph
          

This is a paragraph

Ordered List
            
1. First Item
2. Second Item
3. Third Item
          
  1. List Item 1
  2. List Item 2
  3. List Item 3
Unordered List
            
- First Item
- Second Item
- Third Item
          
  • List Item 1
  • List Item 2
  • List Item 3
Definition List
            
First Term
: Definition of first term.

Second Term : Definition of second term. : Another definition.
First Term
Definition of first term.
Second Term
Definition of second term.
Another definition.
Blockquotes> This is a quote
This is a quote
Code Blocks› › › › function test() {
› › › › › › console.log("markdown");
› › › › }

function test() {
  console.log("markdown");
}
            
Horizontal Rule---
Table
        
 Header 1 | Header 2 
----------|----------
 Cell 11  | Cell 12  
 Cell 21  | Cell 22  
          
Header 1Header 2
Cell 11Cell 12
Cell 21Cell 22
BoldI am **bold**I am bold
ItalicI am *italic*I am italic
StrikethroughI am ~~strike~~I am strike
Link[example link](http://example.com/)example link
Image![Blog](/img/logo.png)Blog Logo
Codecode `syntax`code syntax