add_readme_rmd {rcompendium} | R Documentation |
Create a README file
Description
This function creates a README.Rmd
file at the root of the project based
on a template. Once edited user needs to knit it into a README.md
(or use the function refresh()
).
Usage
add_readme_rmd(
type = "package",
given = NULL,
family = NULL,
organisation = NULL,
open = TRUE,
overwrite = FALSE,
quiet = FALSE
)
Arguments
type |
A character of length 1. If |
given |
A character of length 1. The given name of the project maintainer. |
family |
A character of length 1. The family name of the project maintainer. |
organisation |
A character of length 1. The name of the GitHub
organisation to host the package. If |
open |
A logical value. If |
overwrite |
A logical value. If this file is already present and
|
quiet |
A logical value. If |
Value
No return value.
See Also
Other create files:
add_citation()
,
add_code_of_conduct()
,
add_compendium()
,
add_contributing()
,
add_description()
,
add_dockerfile()
,
add_license()
,
add_makefile()
,
add_package_doc()
,
add_renv()
,
add_testthat()
,
add_vignette()
Examples
## Not run:
add_readme_rmd(type = "package")
## End(Not run)