Nothing
theme_grid <- function(x, ...) {
fn <- theme_placement_factory(
horizontal = get_option("tinytable_theme_default_horizontal", "c"),
latex_float = get_option(
"tinytable_theme_placement_latex_float",
default = NULL
)
)
x <- style_tt(x, finalize = fn)
fn <- function(table) {
if (isTRUE(table@output == "latex")) {
table <- theme_void_fn(table)
} else if (isTRUE(table@output == "typst")) {
table@table_string <- sub(
"stroke: none,",
"stroke: (paint: black),",
table@table_string
)
}
return(table)
}
x <- style_tt(
x,
tabularray_inner = "hlines, vlines,",
finalize = fn,
bootstrap_class = "table table-bordered"
)
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.