# H1 Header
## H2 Header
### H3 Header
#### H4 Header
##### H5 Header
###### H6 Header
**Bold text**
*Italic text*
~~Strikethrough text~~
==Highlight text==
`Inline code`
- Unordered list item 1
- Unordered list item 2
- Nested item
1. Ordered list item 1
2. Ordered list item 2
1. Nested ordered item
- [x] Task list item (completed)
- [ ] Task list item (incomplete)
[Link text](https://example.com)
[Link with title](https://example.com "Optional title")


`Inline code`
```javascript
function hello() {
console.log("Hello, World!");
}
```
```python
def greet(name):
print(f"Hello, {name}!")
```
| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Row 1 | Data | More |
| Row 2 | Data | More |
| Left | Center | Right |
|:-----|:------:|------:|
| Left | Center | Right |
| Aligned | Text | Here |
> This is a blockquote
>
> You can have multiple paragraphs
> This is a blockquote
>> This is a nested blockquote
H~2~O (subscript)
X^2^ (superscript)
Footnote reference[^1]
[^1]: This is the footnote.
Term 1
: Definition 1
Term 2
: Definition 2
: Another definition
```mermaid
flowchart TD
A[Start] --> B{Decision?}
B -->|Yes| C[Process A]
B -->|No| D[Process B]
C --> E[End]
D --> E
```
```mermaid
sequenceDiagram
participant A as Alice
participant B as Bob
A->>B: Hello Bob, how are you?
B-->>A: Great!
A-)B: See you later!
```
```mermaid
classDiagram
Animal <|-- Duck
Animal <|-- Fish
Animal : +int age
Animal : +String gender
Animal: +isMammal()
Animal: +mate()
class Duck{
+String beakColor
+swim()
+quack()
}
```
```mermaid
gantt
title A Gantt Diagram
dateFormat YYYY-MM-DD
section Section
A task :a1, 2014-01-01, 30d
Another task :after a1 , 20d
section Another
Task in sec :2014-01-12 , 12d
another task : 24d
```
The quadratic formula is $x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$
Einstein's famous equation: $E = mc^2$
Inline math: $\pi \approx 3.14159$
$$
\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}
$$
$$
\sum_{n=1}^{\infty} \frac{1}{n^2} = \frac{\pi^2}{6}
$$
Greek letters: $\alpha, \beta, \gamma, \delta, \epsilon$
$\zeta, \eta, \theta, \iota, \kappa, \lambda$
$\mu, \nu, \xi, \omicron, \pi, \rho$
$\sigma, \tau, \upsilon, \phi, \chi, \psi, \omega$
$\sum, \prod, \int, \oint$
$\leq, \geq, \neq, \approx$
$\infty, \pm, \mp, \cdot$
$\times, \div, \cap, \cup$
$\frac{a}{b}$ or $\frac{numerator}{denominator}$
$\sqrt{x}$ or $\sqrt{expression}$
$\sqrt[n]{x}$ for nth root
$x^2, x^{superscript}$
$x_1, x_{subscript}$
$$
\begin{pmatrix}
a & b \\
c & d
\end{pmatrix}
$$
$$
\begin{bmatrix}
1 & 2 & 3 \\
4 & 5 & 6 \\
7 & 8 & 9
\end{bmatrix}
$$
Use these keyboard shortcuts to speed up your editing:
All formatting buttons in the toolbar have corresponding keyboard shortcuts and will insert the appropriate markdown syntax at your cursor position.