Cheatsheet
Inline styles
| Element | Syntax |
|---|---|
| Headings | # H1 ## H2 ### H3 |
| Bold | **Bold** |
| Italic | *Italic* |
~~Strikethrough~~ | |
Code | `Code` |
| Link | [Link](https://example.com) |
| Image |  |
| 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:
- One
- Two
- Three
Unordered list:
- One
- Two
- Three
Ordered list
- One
- Two
- Three
Ordered list
1. One
2. Two
3. Three
Task list
- One
- Two
- Three
Task list
- [x] One
- [ ] Two
- [ ] Three
Tables
| Right aligned | Centered | Left aligned |
|---|---|---|
| A | B | C |
| 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.