Markdown Syntax Reference

Complete guide to Markdown formatting with examples

Headings

Markdown

# Heading 1
## Heading 2
### Heading 3
#### Heading 4

Result

Heading 1

Heading 2

Heading 3

Text Formatting

Markdown

**Bold text**
*Italic text*
***Bold and italic***
~~Strikethrough~~
`Inline code`

Result

Bold text

Italic text

Bold and italic

Strikethrough

Inline code

Lists

Markdown

- Item 1
- Item 2
  - Nested item
1. First item
2. Second item

Result

  • Item 1
  • Item 2
    • Nested item
  1. First item
  2. Second item

Tables

Markdown

| Header 1 | Header 2 |
|----------|----------|
| Cell 1   | Cell 2   |
| Cell 3   | Cell 4   |
Header 1Header 2
Cell 1Cell 2