Replies: 2 comments 4 replies
-
Could you share a small self-contained "working" (reproducible) example to work with, i.e., a complete Quarto document or a Git repository? Thanks. You can share a Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four ````qmd
---
title: "Reproducible Quarto Document"
format: html
---
This is a reproducible Quarto document using `format: html`.
It is written in Markdown and contains embedded R code.
When you run the code, it will produce a plot.
```{r}
plot(cars)
```
The end.
```` |
Beta Was this translation helpful? Give feedback.
1 reply
-
@dragonstyle is there a limitation with |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
Hello.
I am working on a revealJS presentation in Quarto
Instead of creating Python code blocks all over the place, I'd like to embed them from a Jupyter Notebook.
Unfortunately, that doesn't work for me (following this guide).
Now I am wondering if that is due to the different releases of
I add a tag to the external Jupyter code cell (a cell containing one Python Plotly graph at a time) and then reference the ipynb and the said tag
Am I doing something wrong or is the VSC Quarto Plugin just not incorporating the lasted addition?
I get the following output on my Quarto RevealJS Presentation:
Unable to display output for mime type(s): application/vnd.plotly.v1+json
Cheers,
Jens
Beta Was this translation helpful? Give feedback.
All reactions