Skip to contents

Create GitHub Clinic Files

Usage

create_github_clinic(names, path = getwd())

Arguments

names

A vector of names for the markdown files that should be created. The .md extension will be added automatically.

path

Path to the directory where github-clinic should be created.

Examples

if (FALSE) {

create_github_clinic(names = c("julia", "erin"))

file.exists("github-clinic")
#> TRUE

list.files("github-clinic")
#> "erin.md"  "julia.md"
}