Replies: 1 comment 4 replies
-
I think the issue is that from fasthtml.common import *
app, rt = fast_app(live=True,hdrs=[KatexMarkdownJS()])
@rt("/")
def get():
return (
Div(r'This is an inline formula $x = \frac {1}{2}$', cls="marked"),
)
serve() |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How to use the
KatexMarkdownJS()
function included infasthtml
?I created the following minimal example based on adv.py, but it is not returning the rendered katex formula
Beta Was this translation helpful? Give feedback.
All reactions