Nothing
knitr::knit_engines$set(yaml = function(options) { code <- paste(options$code, collapse = "\n") options$results <- "hide" varname <- options$output.var if (!is.null(varname)) { assign(varname, code, envir = knitr::knit_global()) } knitr::engine_output(options, code, out = code) } ) set_codeblock_label <- function(x) { sprintf("<p class = 'codeblock-label'>%s</p>", x) } knitr::knit_hooks$set(codeblock_label = function(before, options, name) { if (before) { if (is.character(options[[name]])) { set_codeblock_label(options[[name]]) } else if (options$engine == "yaml") { set_codeblock_label("config.yml") } else { set_codeblock_label(options$engine) } } }) knitr::knit_hooks$set(with_config = local({ old_envvars <- NA function(before, options) { if (before) { config_yml <- base::get(options$config_yml, envir = knitr::knit_global()) .config_file <- config:::write_yaml_as_file(config_yml) new_envvars <- .config_file old_envvars <<- config:::keep_old_envvars(new_envvars) config:::set_new_envvars(new_envvars) } else { config:::reset_envvars(old_envvars) } } })) knitr::opts_chunk$set( codeblock_label = TRUE )
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.