Markdown Syntax Cheat Sheet
A list of representative "Markdown syntax" that helps structure text and makes it easier to write.
It can be used on many platforms such as GitHub, Notion, Slack, and WordPress.
Headers
# Header 1
## Header 2
### Header 3
#### Header 4 Emphasis
**Bold**
*Italic*
~~Strikethrough~~
`Inline code` Bold
Italic
Strikethrough
Inline code
Lists
- Bulleted list 1
- Bulleted list 2
- Nested list
1. Numbered list 1
2. Numbered list 2
- Bulleted list 1
- Bulleted list 2
- Nested list
- Numbered list 1
- Numbered list 2
- Bulleted list 1
- Bulleted list 2
- Nested list
1. Numbered list 1
2. Numbered list 2 - Bulleted list 1
- Bulleted list 2
- Nested list
- Numbered list 1
- Numbered list 2
Task Lists
- [x] Completed task
- [ ] Incomplete task
- Completed task
- Incomplete task
- [x] Completed task
- [ ] Incomplete task - Completed task
- Incomplete task
Links & Images
[Link text](https://example.com)

🖼️ Image will be displayed
[Link text](https://example.com)
 🖼️ Image will be displayed
Blockquotes & Code
> This is a blockquote.
> It can span multiple lines.
```javascript
// Code block
const hello = "world";
```
This is a blockquote.
It can span multiple lines.
// Code block
const hello = "world";
> This is a blockquote.
> It can span multiple lines.
```javascript
// Code block
const hello = "world";
``` This is a blockquote.
It can span multiple lines.
// Code block
const hello = "world"; Tables
| Left-aligned | Center-aligned | Right-aligned |
| :--- | :---: | ---: |
| Apple | Orange | $1 |
| Banana | Melon | $5 |
Left-aligned Center-aligned Right-aligned Apple Orange $1 Banana Melon $5
| Left-aligned | Center-aligned | Right-aligned |
| :--- | :---: | ---: |
| Apple | Orange | $1 |
| Banana | Melon | $5 | | Left-aligned | Center-aligned | Right-aligned |
|---|---|---|
| Apple | Orange | $1 |
| Banana | Melon | $5 |
Extras (Horizontal rules, footnotes)
---
(3 or more hyphens for a horizontal rule)
Add a footnote to text[^1]
[^1]: This is the footnote content.
Add a footnote to text[1]
1. This is the footnote content.
---
(3 or more hyphens for a horizontal rule)
Add a footnote to text[^1]
[^1]: This is the footnote content. Add a footnote to text[1]
1. This is the footnote content.
Do you want to convert the written Markdown to HTML?
We provide a tool that instantly converts Markdown into HTML tags directly in your browser and offers real-time preview.
Use the Markdown to HTML Converter ToolSend Feedback
Please let us know your thoughts to help us improve the tool.
Feedback is temporarily suspended
The server is busy or spam protection is active. Please try again later.