warn_once <- function(msg, id) {
id <- paste0("modelsummary_warning_", id)
msg <- paste(msg, "This warning appears once per session.")
if (isTRUE(getOption(id, default = TRUE))) {
warning(msg, call. = FALSE)
opts <- list(FALSE)
names(opts) <- id
options(opts)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.