quarto-dev/quarto-python

quarto does not work with holoviews library

ea42gh opened this issue · 2 comments

---
title: "Quarto Basics"
format:
  html:
    code-fold: true
jupyter: python3
---
` ` `{python}
#| label: holoviews
#| fig-cap: "Holoviews plot"

import numpy as np
import holoviews as hv;
hv.extension('bokeh', logo=False);
 
r            = np.arange(0, 2, 0.01)
theta        = 4 * np.pi * r

hv.Curve((theta,r))
` ` `

does not render correctly, e.g, with html and with pdf output

I would also be interested in being able to use HoloViz, hvPlot, Panel and the rest of the HoloViz ecosystem with Quarto.

issue to track this: quarto-dev/quarto-cli#1867