#' Collapse character vectors into a string
#'
#' @param ... Vectors to be collapsed
#' @param sep A string as a separator
#'
#' @noRd
collapse <- function(..., sep = " ") {
x <- c(...)
if (is.null(x)) return(NULL)
paste(x, collapse = sep)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.