Pn.extension()

I’m trying to render a panel GUI with both notifications and LaTeX support

I’m using:

pn.extension(notifications=True)
pn.extension('katex', 'mathjax')

The second one seems to override the first, but putting them in the same statement understandably gives a keyword error (what is the keyword for katex/mathjax?).

Any ideas on how to get both?

import panel as pn
pn.extension('katex', 'mathjax', notifications=True)

Perhaps

1 Like