https://github.com/quarto-dev/quarto-r
R interface to quarto-cli
https://github.com/quarto-dev/quarto-r
Last synced: 7 days ago
JSON representation
R interface to quarto-cli
- Host: GitHub
- URL: https://github.com/quarto-dev/quarto-r
- Owner: quarto-dev
- Created: 2021-02-02T20:14:10.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-17T19:46:54.000Z (28 days ago)
- Last Synced: 2025-03-31T15:03:56.667Z (14 days ago)
- Language: R
- Homepage: https://quarto-dev.github.io/quarto-r/
- Size: 5.62 MB
- Stars: 146
- Watchers: 9
- Forks: 24
- Open Issues: 66
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- Contributing: .github/CONTRIBUTING.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-quarto - R - [R](https://www.r-project.org/) interface package to Quarto CLI. (Libraries/Packages/Scripts)
- jimsghstars - quarto-dev/quarto-r - R interface to quarto-cli (R)
README
[](https://CRAN.R-project.org/package=quarto)
[](https://github.com/quarto-dev/quarto-r/actions/workflows/R-CMD-check.yaml)
[](https://app.codecov.io/gh/quarto-dev/quarto-r?branch=main)[Quarto](https://quarto.org) is an open-source scientific and technical publishing system built on [Pandoc](https://pandoc.org).
The **quarto** package provides an R interface to frequently used operations in the Quarto Command Line Interface (CLI). The package is not a requirement for using Quarto with R. Rather, it provides an R interface to common Quarto operations for users who prefer to work in the R console rather than a terminal, and for package authors that want to interface with Quarto using scripts.
Before using the Quarto R package, you should install the Quarto CLI from .
## Installing the package
Latest released version from CRAN
```r
# latest release version
install.packages("quarto")
```Latest dev version from Github
```r
# dev version
pak::pak("quarto-dev/quarto-r")
# or
remotes::install_github("quarto-dev/quarto-r")
```or Latest build of dev version from r-universe
```r
install.packages('quarto', repos = c('https://quarto-dev.r-universe.dev', 'https://cloud.r-project.org'))
```Look at the [Functions Reference page](https://quarto-dev.github.io/quarto-r/reference/index.html) to see the list of functions available in the package.