In my daily work I use pandoc 2.7.2 and everything knits fine.
Recently someone suggested at a local R Users' meeting to checkout the DataExplorer package. After installing the package, a quick example fails to knit unless I change .Renviron to point to an older 2.6 version of pandoc.
RSTUDIO_PANDOC = "C:\pandoc26"
For others using the current pandoc, does this short DataExplorer example work for anyone?
library(DataExplorer)
create_report(iris)
I see this error with Pandoc 2.7.2 that goes away when I use Pandoc 2.6:
File d3.min.js not found in resource path
Quitting from lines 26-28 (samples.Rmd)
Error: pandoc document conversion failed with error 99
Editing .Renviron to make changes by RStudio project is not a good solution. How can I specify the version of pandoc I want knitr to use in my project instead of .Renviorn?