.onAttach <- function(libname, pkgname){
packageStartupMessage("Welcome to homelocator package!")
}
.onLoad <- function(libname, pkgname){
op <- options()
op.devtools <- list(
devtools.path = "~/R-dev",
devtools.install.args = "",
devtools.desc.license = "MIT + file LICENSE",
devtools.desc.suggests = NULL,
devtools.desc = list()
)
toset <- !(names(op.devtools) %in% names(op))
if(any(toset)) options(op.devtools[toset])
invisible()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.