#' Set options(error = recover)
#'
#' @export
optionsErrorRecover <- function() {
cat('options(error = recover)\n')
options(error = recover)
}
#' Set options(error = NULL)
#'
#' @export
optionsErrorNull <- function() {
cat('options(error = NULL)\n')
options(error = NULL)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.