md" function to embed rich text into your marimo
apps. This function compiles Markdown into HTML that marimo
can display.
For example, here's the code that rendered the above title and
paragraph:
mo.md(
'''
# Hello, Markdown!
Use marimo's "`md`" function to embed rich text into your marimo
apps. This function compiles your Markdown into HTML that marimo
can display.
'''
)
mo.md(r'$f : \mathbf{R} o \mathbf{R}$')
mo.md(
r'''
\[
f: \mathbf{R} o \mathbf{R}
\]
'''
)