#' package_info
#'
#' @return A tibble of loaded packages and versions.
#' @export
package_info <- function(){
utils::sessionInfo()$otherPkgs %>%
purrr::map_df(with, data.frame(Package, Version)) %>%
dplyr::arrange(Package)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.