Nothing
add_chunk_templates_to_chapter_structure <-
function(chapter_structure, chunk_templates) {
out <- vctrs::vec_slice(chapter_structure,
!is.na(chapter_structure$.variable_name_dep))
out <- tidyr::crossing(out, chunk_templates)
out_na <- vctrs::vec_slice(chapter_structure,
is.na(chapter_structure$.variable_name_dep))
out <- dplyr::bind_rows(out_na, out)
out
}
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.