Nothing
alert <- function(type = c("warning", "info", "success"), msg, ...) {
type <- match.arg(type)
if (type == "warning") {
cli::cli_alert_warning(sprintf(msg, ...))
} else if (type == "info") {
cli::cli_alert_info(sprintf(msg, ...))
} else if (type == "success") {
cli::cli_alert_success(sprintf(msg, ...))
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.