Markdown Guide

Basic Syntax

Headers

# Heading 1
## Heading 2

Emphasis

*italic* or _italic_
**bold** or __bold__

Lists

Unordered

- Item 1
- Item 2
  - Sub item

Ordered

1. First item
2. Second item

Links & Images

Links

[Link text](url)
[Link](url "title")

Images

![Alt text](url)
![Alt](url "title")

Code

Inline Code

`code here`

Code Block

```language
code block
```

Tables & Quotes

Table

| A | B |
|---|---|
| 1 | 2 |

Blockquote

> Quote text
>> Nested quote