renv_verbose <- function() {
verbose <- getOption("renv.verbose")
if (!is.null(verbose))
return(verbose)
verbose <- Sys.getenv("RENV_VERBOSE", unset = NA)
if (!is.na(verbose))
return(TRUE)
interactive()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.