Nothing
local_edition(3)
test_that("builders reproduce to_html output", {
ht <- hux(a = 1:2, b = 3:4)
expect_identical(
to_html(ht),
paste0(
huxtable:::build_table_style(ht),
huxtable:::build_colgroup(ht),
huxtable:::build_row_html(ht, huxtable:::build_cell_html(ht)),
"</table>\n"
)
)
})
test_that("build_cell_html returns correct dimensions", {
ht <- hux(a = 1:2, b = 3:4)
cells <- huxtable:::build_cell_html(ht)
expect_equal(dim(cells), dim(ht))
})
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.