Nothing
test_that("md_table()", {
expect_snapshot(cat(md_table(mtcars[1:4, 1:4])))
})
test_that("md_code_block()", {
expect_equal(
md_code_block("markdown", c("```r", "runif(1)", "```")),
c("````markdown", "```r", "runif(1)", "```", "````")
)
expect_equal(
md_code_block("markdown", c("````r", "runif(1)", "````")),
c("`````markdown", "````r", "runif(1)", "````", "`````")
)
})
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.