| yml_clean {ymlthis} | R Documentation |
Remove intermediate rendering files
Description
R Markdown may create many documents while rendering the final product, for
instance by using knitr to turn the R Markdown file to a Markdown file and
then using Pandoc to convert to the final output. The clean field tells R
Markdown whether or not to remove these files.
Usage
yml_clean(.yml, clean)
Arguments
.yml |
a |
clean |
Logical. Remove intermediate files that are created while making the R Markdown document? |
Value
a yml object
See Also
Other yml:
asis_yaml_output(),
bib2yml(),
draw_yml_tree(),
has_field(),
read_json(),
use_yml_defaults(),
use_yml_file(),
use_yml(),
yml_author(),
yml_blogdown_opts(),
yml_bookdown_opts(),
yml_citations(),
yml_distill_opts(),
yml_latex_opts(),
yml_output(),
yml_pagedown_opts(),
yml_params(),
yml_pkgdown(),
yml_reference(),
yml_replace(),
yml_resource_files(),
yml_rsconnect_email(),
yml_rticles_opts(),
yml_runtime(),
yml_site_opts(),
yml_toc(),
yml_vignette()
Other R Markdown:
yml_params(),
yml_runtime(),
yml_site_opts(),
yml_vignette()
Examples
yml() %>%
# keep intermediate files
yml_clean(FALSE)