Nothing
to_file_url <- function(path) {
stopifnot(file.exists(path))
norm <- normalizePath(path, winslash = "/", mustWork = TRUE)
encoded <- utils::URLencode(norm)
if (.Platform$OS.type == "windows") {
paste0("file:///", encoded) # file:///C:/...
} else {
paste0("file://", encoded) # file:///tmp/...
}
}
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.