Markdown Cheat Sheet
Quick reference guide for all markdown syntax
Headers
H1
Syntax:
# Heading 1Output:
Heading 1
H2
Syntax:
## Heading 2Output:
Heading 2
H3
Syntax:
### Heading 3Output:
Heading 3
Emphasis
Bold
Syntax:
**bold text**Output:
bold text
Italic
Syntax:
*italicized text*Output:
italicized text
Bold & Italic
Syntax:
***bold and italic***Output:
bold and italic
Lists
Unordered
Syntax:
- Item 1
- Item 2Output:
- Item 1
- Item 2
Ordered
Syntax:
1. Item 1
2. Item 2Output:
- Item 1
- Item 2
Links & Images
Link
Syntax:
[title](https://example.com)Output:
Image
Syntax:
Output:
🖼️ Image
Code
Inline Code
Syntax:
`code`Output:
codeCode Block
Syntax:
```javascript
code here
```Output:
Code Block
Other
Blockquote
Syntax:
> QuoteOutput:
Quote
Horizontal Rule
Syntax:
---Output:
Table
Syntax:
| Header | Header |
|--------|--------|
| Cell | Cell |Output:
Table