Nothing
refs_to_list <- function(refs){
if(is.list(refs)){
refs
} else if(is.null(refs)){
list(NULL)
} else if(is.character(refs)){
as.list(refs)
} else (
list(refs)
)
}
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.