Supporting IPython.display.display
Is there some guidance on converting Jupyter notebooks that use libraries that do things like output
<IPython.core.display.HTML object>
? I'm testing out the notebook here:
https://nbviewer.org/github/allefeld/pytikz/blob/master/pytikz.ipynb
but alas, Marimo doesn't display the graphics.Notebook on nbviewer
Check out this Jupyter notebook!
1 Reply
We just implemented support for
ipython.display.display
-- will be in our next release. Thanks for bringing this to our attention! https://github.com/marimo-team/marimo/pull/919GitHub
improvement: patch
IPython.display.display
to call `mo.output.app...This improves compatibility with code written for IPython.
Additionally, this adds a formatter for IPython.display.HTML -- we already some display.HTML objects by special casing _reprhtml, but th...