plotly in markdown
Have you had luck adding a Plotly fig to a markdown section? I could've sworn it worked before. But now I'm getting it exported as HTML text instead of rendering
I've tried
and
2 Replies
can you try
mo.as_html
?
mo.as_html
runs through our special formatters which handles plotly rendering correctly.
mo.Html(fig.to_html())
will just try to render the output from fig.to_html()
which is raw html and may be too largeDope, thanks