Nothing
clean_string <- function(v){
# tidy up titles with html tags
v <- gsub('\\\n|\\\t|\\\r', '', v)
# remove trailing / leading white space
v <- gsub('^\\s+|\\s+$', '', v)
# remove multiple white space with single space
v <- gsub(' {2,}', ' ', v)
# return
return(v)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.