Nothing
## ----setup, include = FALSE---------------------------------------------------
colorize <- function(x, color) {
if (knitr::is_latex_output()) {
sprintf("\\textcolor{%s}{%s}", color, x)
} else {
sprintf("<span style='color: %s;'>%s</span>", color,
x)
}
}
colorize_code <- function(x, color) {
if (knitr::is_latex_output()) {
sprintf("\\texttt{\\textcolor{%s}{%s}}", color, x)
} else if (knitr::is_html_output()) {
sprintf("<span style='color: %s;'>`%s`</span>", color,
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.