#' Print method for "atlas" class
#'
#' @param x An object of class "atlas"
#' @param ... Other arguments passed to or from other methods
#'
#' @export
print.atlas <- function(x, ...) {
stopifnot(is_atlas(x))
cat(x$name, "in", paste0(x$space, ":"), "\n")
print(utils::head(x$key), ...)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.