#' List folders into tibble
#'
#' @param ...
#'
#' @return
#' @export
#'
#' @examples
list_dir <- function(...){
tibble(name = dir(..., full.names = FALSE),
path = dir(..., full.names = TRUE))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.