build_rmd() is deprecated, as it is a low-level helper for internal use. To
render your package's README.qmd or README.Rmd, use build_readme(). To
preview a vignette or article, use functions like pkgdown::build_site() or
pkgdown::build_article().
Usage
build_rmd(files, path = ".", output_options = list(), ..., quiet = TRUE)Arguments
- files
The Rmarkdown files to be rendered.
- path
path to the package to build the readme.
- output_options
List of output options that can override the options specified in metadata (e.g. could be used to force
self_containedormathjax = "local"). Note that this is only valid when the output format is read from metadata (i.e. not a custom format object passed tooutput_format).- ...
additional arguments passed to
rmarkdown::render()- quiet
If
TRUE, suppress output.
