champ.message <- function(tabs = 1, msg, type = "message") {
output <- ""
for (i in 1:tabs) output <- paste(output, " ")
output <- paste(output, msg)
if (type == "stop") stop(output) else message(output)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.