import solara
@solara.component
def Page():
solara.Markdown(r'''
# Large
## Smaller
## List items
* item 1
* item 2
## Math
Also, $x^2$ is rendered as math.
Or multiline math:
$$
\int_0^1 x^2 dx = \frac{1}{3}
$$
## Code highlight support
```python
code = "formatted" and "supports highlighting"
```
## Mermaid support!
See [Mermaid docs](https://mermaid-js.github.io/)
```mermaid
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
```
''')
Page()

vscode-jupyter version: v2024.1.100