::convert_chunk_header("input.Rmd", "output.qmd") knitr
Quarto Tips and Tricks
Contents
- Markdown Basics
- Figures
- Tables
- Citations & Footnotes
- Cross-References
- Using Python
- Using R
- Execution Options
- Rendering
- Output Formats: HTML
See this design: https://docs.prefect.io/latest/getting-started/installation/
Rmd to Quarto
Convert to Quarto with in-body chunck options:
input.Rmd:
```{r, echo=FALSE, eval=FALSE}
library(ggplot2)
ggplot(mtcars, aes(x = wt, y = mpg)) + geom_point()
```
output.qmd:
```{r}
# | echo: FALSE
# | eval: FALSE
library(ggplot2)
ggplot(mtcars, aes(x = wt, y = mpg)) + geom_point()
```
qmd to ipynb
Convert document.qmd
to a Jupyter :
Terminal
quarto convert document.qmd