Nothing
#' Remove srcrefs
#'
#' @param items A [LaTeX2] object, or any other list of [LaTeX2item]s.
#'
#' @returns The `items` with source references removed.
#' @export
rmSrcrefs <- function(items) {
attr(items, "srcref") <- NULL
if (is.list(items)) {
attrs <- attributes(items)
items <- lapply(items, rmSrcrefs)
attributes(items) <- attrs
}
items
}
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.