20 lines
191 B
Markdown
20 lines
191 B
Markdown
# Math
|
|
|
|
Render mathematical formulas.
|
|
|
|
## Syntax
|
|
|
|
- **Inline**: `$formula$`
|
|
- **Block**: `$$formula$$`
|
|
|
|
## Example
|
|
|
|
```md
|
|
Inline: $E=mc^2$
|
|
|
|
Block:
|
|
$$
|
|
\sum_{i=1}^n i = \frac{n(n+1)}{2}
|
|
$$
|
|
```
|