#' Load multiple packages at once
#'
#' @param ... packages
#' @param character.only a logical indicating whether packages can be assumed to be character strings.
#'
#' @return
#' @export
#'
#' @examples
#'
dt_library <- function(..., character.only = TRUE){
packages <- as.character(match.call(expand.dots = FALSE)[[2]])
invisible(lapply(packages, library, character.only = character.only, quietly = TRUE))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.