I have a bunch of directories with Rmd files to be compiled into HTML. Each call to rmarkdown::render includes a large list of params. Everything w
rmarkdown::render
params
After digging around in rmarkdown::render code for a while I've found a solution.
Adding knitr::knit_meta(class=NULL, clean = TRUE) before rmarkdown::render(input=file, etc) seems to do the trick..
knitr::knit_meta(class=NULL, clean = TRUE)
rmarkdown::render(input=file, etc)