Nothing
source("helpers.R")
library(terminalgraphics)
if (!is_kitty()) {
expect_equal(term_background(), "white")
expect_equal(term_foreground(), "black")
expect_equal(term_palette(), grDevices::hcl.colors("Dark2", n = 9 ))
}
options(
term_background = "red",
term_foreground = "yellow",
term_palette = c("pink", "green")
)
expect_equal(term_background(), "red")
expect_equal(term_foreground(), "yellow")
expect_equal(term_palette(), c("pink", "green"))
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.