#' Paste values together, separated by commas
#'
#' @param \dots character
#' @importFrom stringr str_c
#' @export
paste_csv <- function (...) {
stringr::str_c(..., collapse = ", ")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.