rmarkdown 1.9
NEW FEATURES
- Added a new (experimental) output format
powerpoint_presentation
. If you want to test it, you will need Pandoc >= 2.1 (#1231).
MAJOR CHANGES
- If the tinytex package is installed, PDF output is built through
tinytex::latexmk()
, otherwise it is generated byrmarkdown:::latexmk()
, which has been factored out and improved in the tinytex package, so it is recommended that you install the tinytex package (#1222).
BUG FIXES
-
Temporary files created in
render()
may be cleaned up prematurely, which can cause problems with Shiny R Markdown documents (#1184). -
Further improvements regarding compatibility with Pandoc 2.0, e.g. tabbed sections don't work (https://community.rstudio.com/t/3019).
-
When
preserve_yaml = TRUE
inmd_document()
,toc = TRUE
fails to create the table of contents (thanks, @stla, #1216). -
Suppress confusing error messages from
knitr::purl()
duringrmarkdown::find_external_resources()
(thanks, @aronatkins #1247, and @paulobrecht #1154). -
Fixed the obscure error
Error: path for html_dependency not found:
, which was due to the HTML dependency of highlight.js (thanks, @bborgesr, #1213).