Nothing
#' Clean and format URL
#'
#' @param url The URL to clean
#' @return A cleaned and formatted URL
#' @keywords internal
clean_url <- function(url) {
url <- trimws(url)
url <- gsub("\\s*\\([^\\)]+\\)\\s*$", "", url)
return(url)
}
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.