Markdown Cheat Sheet
Quick reference guide with live examples and one-click copy
Popular Snippets
Most frequently used markdown patterns - one-click copy for instant use
Heading 1
Largest heading size
# Heading 1Heading 1
Heading 2
Second level heading
## Heading 2Heading 2
Heading 3
Third level heading
### Heading 3Heading 3
Bold Text
Make text bold/strong
**bold text** or __bold text__bold text or bold text
Italic Text
Make text italic/emphasized
*italic text* or _italic text_italic text or italic text
Bold and Italic
Combine bold and italic
***bold and italic***bold and italic
Strikethrough
Strike through text
~~strikethrough text~~strikethrough text
Blockquote
Create a blockquote
> This is a blockquoteThis is a blockquote
Unordered List
Bullet point list
- Item 1
- Item 2
- Item 3- Item 1
- Item 2
- Item 3
Ordered List
Numbered list
1. First item
2. Second item
3. Third item- First item
- Second item
- Third item
Nested List
List with sub-items
- Main item
- Sub item 1
- Sub item 2- Main item
- Sub item 1
- Sub item 2
Task List
Checkbox list
- [x] Completed task
- [ ] Incomplete task- [x] Completed task
- [ ] Incomplete task
Link
Create a hyperlink
[Link text](https://example.com)Link with Title
Link with hover title
[Link](https://example.com "Title on hover")Image
Embed an image

Linked Image
Image that links somewhere
[](https://example.com)Inline Code
Code within a sentence
Use `inline code` for code snippets.Use inline code for code snippets.
Code Block
Multi-line code block
```
function hello() {
console.log("Hello!");
}
```function hello() {
console.log("Hello!");
}
Code Block with Language
Syntax highlighted code
```javascript
function hello() {
console.log("Hello!");
}
```function hello() {
console.log("Hello!");
}
Table
Create a basic table
| Header 1 | Header 2 |
| --- | --- |
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 || Header 1 | Header 2 |
|---|---|
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
Aligned Table
Table with column alignment
| Left | Center | Right |
| :--- | :---: | ---: |
| L1 | C1 | R1 |
| L2 | C2 | R2 || Left | Center | Right |
|---|---|---|
| L1 | C1 | R1 |
| L2 | C2 | R2 |
Horizontal Rule
Divider line
---Footnote
Add a footnote reference
Text with footnote[^1]
[^1]: Footnote contentText with footnote[^1]
[^1]: Footnote content
Heading with ID
Heading with custom anchor
### My Heading {#custom-id}My Heading {#custom-id}
Definition List
Term and definition pairs
Term
: Definition of the termTerm : Definition of the term
Need more markdown tools? Check out PixelProbe to audit photo metadata for privacy.