#' rpn()
#'
#' remove punct/number and get only text
#'
#' @export
rpn <- function(string){
return(trimws(gsub("[[:digit:]]","",gsub("[[:punct:]]","",string))))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.