#' Creates a README.md in the working directory if it doesn't exist
#' @importFrom readr read_lines
#' @importFrom stampede stamp_this
#' @export
create_readme <-
function() {
if (!file.exists("README.md")) {
cat(stampede::stamp_this(), "\tFile Created\n", file = "README.md")
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.