Nothing
# cli_alert* with wrap=TRUE
cli_info <- function(text, .envir = parent.frame()) {
if (env64$verbose) {
cli_alert_info(text, wrap = TRUE, .envir = .envir)
}
}
#' @importFrom cli cli_alert_warning
cli_warning <- function(text, .envir = parent.frame()) {
if (env64$verbose) {
cli_alert_warning(text, wrap = TRUE, .envir = .envir)
}
}
cli_success <- function(text, .envir = parent.frame()) {
if (env64$verbose) {
cli_alert_success(text, wrap = TRUE, .envir = .envir)
}
}
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.