#' Append a string to another
#'
#' @param x A character vector
#' @param string A character string to append
#' @param sep Optional separator string
#'
#' @return A character vector
#'
#' @export
str_append <- function(x, string, sep = "") {
stringr::str_replace(x, "$", paste0(sep, string))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.