#' String Cleaning Functions
#'
#' @param x character vector
#'
# remove content inside html tags from string variables
UnTag <- function(x){gsub("<[^>]*>", " ", x)}
# remove leading and trailing spaces from a string
spaceTrim <- function(x){gsub("(^ +)|( +$)", "", x)}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.