#' List all functions exported when loading a package
#'
#' @param package.name characer string giving the name of the package
#'
#' @return character vector with names of functions exported
#' @export
#'
list_functions <- function(package.name)
{
str = paste("package:", package.name, sep="")
print(ls(str))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.