#' A vector of strings wrapping function
#'
#' This function applies wrap_sentence to a vector of strings
#'
#' @param vector_of_strings Vector of strings to be wrapped
#'
#' @export
wrap_strings <- function(vector_of_strings, ...){
sapply(vector_of_strings,FUN=function(x) {paste(wrap_sentence(x, ...))})
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.