diff --git a/docs/reference/blocks/math.md b/docs/reference/blocks/math.md
index 1234567..89abcde 100644
|
a
|
b
|
The Math block supports standard LaTeX environments such as:
|
| 45 | 45 | - `\sqrt{}` |
| 46 | 46 | - `\frac{}{}` |
| 47 | 47 | |
| | 48 | ## Important: Do not use `\[ \]` or `$$ $$` |
| | 49 | |
| | 50 | The Math block already renders content in math mode. |
| | 51 | Because of this, LaTeX display math delimiters should **not** be used: |
| | 52 | |
| | 53 | ``` |
| | 54 | \[ ... \] |
| | 55 | $$ ... $$ |
| | 56 | ``` |
| | 57 | |
| | 58 | Using these delimiters will cause KaTeX to report parsing errors such as: |
| | 59 | |
| | 60 | `Can't use function '\' in math mode` |
| | 61 | |
| 48 | 62 | ## Examples |
| 49 | 63 | |
| 50 | 64 | ### Matrix example |