Nothing
#' Less scary green messages
#'
#' @param ... message components (see \code{\link[base]{message}})
#' @param domain (see \code{\link[base]{message}})
#' @param appendLF append new line? (see \code{\link[base]{message}})
#'
#' @return TRUE
#' @keywords internal
#'
message <- function (..., domain = NULL, appendLF = TRUE) {
if (is.null(knitr::opts_knit$get('rmarkdown.pandoc.to'))) {
# not in knitr environment
base::message("\033[32m", ..., "\033[39m",
domain = domain, appendLF = appendLF)
} else {
base::message(..., domain = domain, appendLF = appendLF)
}
}
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.