Nothing
#' fix_url
#'
#'
#' @param url a character string containing a single URL
#'
fix_url <-
function(url){
parsed_url <- httr::parse_url(url)
if ( is.null(parsed_url$scheme) ){
url <- paste0("http://", url)
}
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.