#' ede
#' @description ensure directory exists
#' for example ede("/path/to/directory/")
#' @export
#'
ede <- function(dir){
if(!dir.exists(paths = dir)){dir.create(path = dir,recursive = T,showWarnings = F)}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.