| cite_all | R Documentation | 
This is a wrapper for render. First, this function
parses the citations in the document, converting citations
marked with double at sign, e.g.: @@reference2020, into normal
citations, e.g.: @reference2020. Then, it renders the file.
cite_all(...)
... | 
 All arguments are passed to   | 
Returns NULL invisibly. This
function is called for its side effect of rendering an
'R Markdown' file.
# NOTE: Do not use this function interactively, as in the example below.
# Only specify it as custom knit function in an 'R Markdown' file, like so:
# knit: worcs::cite_all
 if (rmarkdown::pandoc_available("2.0")){
   if(requireNamespace("withr", quietly = TRUE)){
     withr::with_tempdir({
       file_name <- file.path("citeall.Rmd")
       loc <- rmarkdown::draft(file_name,
                               template = "github_document",
                               package = "rmarkdown",
                               create_dir = FALSE,
                               edit = FALSE)
       write(c("", "Optional reference: @reference2020"),
             file = file_name, append = TRUE)
       cite_all(file_name)
     }, pattern = "cite_all")
   }
 }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.