Nothing
sanitized_chat_error <- function(err) {
needs_sanitized <-
isTRUE(getOption("shiny.sanitize.errors")) &&
!inherits(err, "shiny.custom.error")
if (needs_sanitized) {
"\n\n**An error occurred.** Please try again or contact the app author."
} else {
sprintf(
"\n\n**An error occurred:**\n\n```\n%s\n```",
strip_ansi(conditionMessage(err))
)
}
}
strip_ansi <- function(text) {
# Matches codes like "\x1B[31;43m", "\x1B[1;3;4m"
ansi_pattern <- "(\x1B|\x033)\\[[0-9;?=<>]*[@-~]"
gsub(ansi_pattern, "", text)
}
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.