Nothing
template_tabularray <- function(theme = "default") {
out <- readLines(system.file("templates/tabularray_default.tex", package = "tinytable"))
return(out)
if (theme %in% c("default", "grid")) {
out <- readLines(system.file("templates/tabularray_default.tex", package = "tinytable"))
} else if (theme == "bootstrap") {
out <- readLines(system.file("templates/tabularray_bootstrap.tex", package = "tinytable"))
} else if (theme == "striped") {
out <- readLines(system.file("templates/tabularray_default.tex", package = "tinytable"))
} else if (theme == "void") {
out <- readLines(system.file("templates/tabularray_void.tex", package = "tinytable"))
} else if (theme == "grid") {
out <- readLines(system.file("templates/tabularray_grid.tex", package = "tinytable"))
}
}
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.