#' Returns the character vector collapsed into as a single character vector
#' element.
#'
#' @param x character vector to be collapsed
#' @param collapse charcter string with collapse argument.
#' @import stringi
#' @export
collapse_word <- function(x, collapse = '') {
stri_c(x, collapse = collapse)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.