#' tolower_rm_special
#'
#' @param string character string
#' @return lower case string all special characters and white space removed
#' @export
tolower_rm_special<-function(string){
string %>% gsub("[[:punct:]]","",.) %>%
gsub(" ","",.) %>% trimws() %>%
tolower() %>% return()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.