Cheatsheet

Inline styles

ElementSyntax
Headings# H1 ## H2 ### H3
Bold**Bold**
Italic*Italic*
Strikethrough~~Strikethrough~~
Code`Code`
Link[Link](https://example.com)
Image![Alt text](https//example.com/image.png)
Horizontal rules---

Blocks

Normal blockquote

Github-like note

Github-like tip

Github-like warning

> Normal blockquote

> [!NOTE]
> Github-like note

> [!TIP]
> Github-like tip

> [!WARN]
> Github-like warning

# Fenced code block
if __name__ == "__main__":
    print("Some python code!")
```python
# Fenced code block
if __name__ == "__main__":
    print("Some python code!")
```

\begin{aligned} f(x) &= x^{2} \\ g(x) &= \frac{1}{x} \\ F(x) &= \int_{b}^{a} \frac{1}{3}\,x^{3}\,dx \end{aligned}

$$
\begin{aligned}
  f(x) &= x^{2} \\
  g(x) &= \frac{1}{x} \\
  F(x) &= \int_{b}^{a} \frac{1}{3}\,x^{3}\,dx
\end{aligned}
$$

Lists

Unordered list:

Unordered list:
- One
- Two
- Three

Ordered list

  1. One
  2. Two
  3. Three
Ordered list
1. One
2. Two
3. Three

Task list

Task list
- [x] One
- [ ] Two
- [ ] Three

Tables

Right alignedCenteredLeft aligned
ABC

| Right aligned | Centered | Left aligned |
| :------------ | :------: | -----------: |
| A             | B        | C            |

Misc

term
definition
term
: definition

Here’s a sentence with a footnote. 1

1

This is the footnote.

Here's a sentence with a footnote. [^1]

[^1]: This is the footnote.