Markdown Complete Guide
Master Markdown formatting in minutes
Markdown is a lightweight markup language for creating formatted text. It's used everywhere: GitHub, Reddit, Discord, documentation, and more.
Basic Syntax
Headings
# Heading 1
## Heading 2
### Heading 3
Text Formatting
**bold text**
*italic text*
~~strikethrough~~
`inline code`
Lists
- Unordered item
- Another item
1. Ordered item
2. Another item
Links & Images
[Link text](https://example.com)

Code Blocks
```javascript
const hello = "world";
```
Tables
| Header 1 | Header 2 |
|----------|----------|
| Cell 1 | Cell 2 |
Blockquotes
> This is a quote
> It can span multiple lines
Quick Reference Table
| Element | Syntax |
|---|---|
| Bold | **text** |
| Italic | *text* |
| Link | [text](url) |
| Image |  |
| Code | `code` |
| Horizontal Rule | --- |