Skip to content
Discussion options

You must be logged in to vote

The same thing should be possible in Quarto since it can reads directly from a Notebook.
Because this is mostly related to the library you are using rather than Quarto itself.
For further help, a reproducible document (or a simple Git repository) to work with is necessary.

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.
````

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@SILIZ4
Comment options

Answer selected by SILIZ4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants