Nothing
tex_cleanup <- function(
cleanup,
stem,
keep_pdf,
keep_log = FALSE,
fileDir = tex_opts$get('fileDir')){
if( !is.null(cleanup) ){
tempDel <- list.files(
fileDir,
sprintf('%s(.*?)(%s)',stem,paste0(cleanup,collapse ='|')),
full.names = TRUE)
if(keep_log){
tempDel <- tempDel[!grepl('log$',tempDel)]
}
if(keep_pdf){
tempDel <- tempDel[!grepl('pdf$',tempDel)]
}
unlink(tempDel)
}
}
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.