Nothing
# Source: <https://github.com/mlr-org/mlr3misc/blob/main/R/format_bib.R>
# by Michel Lang (copied here Feb 2024)
format_bib <- function(..., bibentries = NULL, envir = parent.frame()) {
if (is.null(bibentries)) {
bibentries <- get("bibentries", envir = envir)
}
stopifnot(anyDuplicated(names(bibentries)) == 0L)
str <- vapply(list(...), \(entry) tools::toRd(bibentries[[entry]]), NA_character_)
paste0(str, collapse = "\n\n")
}
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.