quarto does not work with holoviews library
ea42gh opened this issue · 2 comments
ea42gh commented
---
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
MarcSkovMadsen commented
I would also be interested in being able to use HoloViz, hvPlot, Panel and the rest of the HoloViz ecosystem with Quarto.
ea42gh commented
issue to track this: quarto-dev/quarto-cli#1867