#' @title clean_path_name helper function
#'
#' @description Internal function to clean paths to have a
#' tailing slash
#'
#' @param pathname A character string. A pathname to be
#' cleaned (to have a tailing slash).
#'
#' @export
#'
clean_path_name <- function(pathname) {
return(gsub("([[:alnum:]])$", "\\1/", pathname))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.