Nothing
font_back_color <- function(x, fontcolor = NULL, backcolor = NULL) {
if (!is.null(fontcolor)) {
x <- paste0("\\textcolor{", fontcolor, "}{", x, "}")
}
if (!is.null(backcolor)) {
if (isTRUE(backcolor)) {
backcolor <- "shadecolor"
}
x <- paste0("\\colorbox{", backcolor, "}{", x, "}")
}
return(x)
}
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.