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