Nothing
test_that("process_markdown() correctly resolves reference", {
skip_if_not_pandoc()
# testing using markdown_document2() for snapshotting easier
rmd <- local_rmd_file(
"# Theory {#theory}", "", "see \\@ref(label1)", "",
"## Some other header {#label1}", "", "Content"
)
content <- .render_and_read(rmd, output_format = markdown_document2())
expect_match(content, 'see <a href="#label1">1.1</a>', fixed = TRUE, all = FALSE)
})
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.