#' Creates folder in working dir if doesn't exist
#' @param folder_name name of the directory
#' @export
#'
dir_create_if_not_exist <-
function(folder_name) {
if (!(dir.exists(folder_name))) {
dir.create(folder_name)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.