R Under development (unstable) (2023-05-30 r84466 ucrt) -- "Unsuffered Consequences" Copyright (C) 2023 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > # only run this test on CI platforms > if (.Platform$OS.type == 'unix' && !isTRUE(as.logical(Sys.getenv("CI"))) && rmarkdown::pandoc_available()) { + + # test if Word documents can be rendered with a specified intermediate dir + # (https://github.com/rstudio/rmarkdown/issues/1431) + system2(rmarkdown::pandoc_exec(), '--print-default-data-file reference.docx', stdout = 'rmd/template.docx') + rmarkdown::render('rmd/word.Rmd', intermediates_dir = 'tmp') + + # bib files should be copied to the intermediates dir: + # https://github.com/rstudio/rmarkdown/issues/1358 + rmarkdown::render('rmd/two-bibs.Rmd', intermediates_dir = tempdir()) + + # use an absolute output_dir should not trigger a file.rename() warning + # (https://github.com/rstudio/rmarkdown/issues/1224) + withCallingHandlers( + rmarkdown::render( + 'rmd/output_dir.Rmd', output_dir = file.path(tempdir(), 'output'), + intermediates_dir = file.path(tempdir(), 'tmp') + ), warning = function(e) { + if (identical(deparse(e$call), 'file.rename(from, to)') || grepl('cannot rename file', e$message)) { + stop(e) + } + } + ) + + # the default LaTeX template should work with multiple authors: + # https://github.com/rstudio/rmarkdown/issues/1716 + rmarkdown::render('rmd/two-authors.Rmd') + + # R code in YAML should be evaluated before YAML is passed to Pandoc: + # https://github.com/rstudio/rmarkdown/issues/1709 + rmarkdown::render('rmd/yaml-r-code.Rmd') + + # raw blocks in header-includes should work: + # https://github.com/rstudio/rmarkdown/issues/1729 + rmarkdown::render('rmd/raw-header.Rmd') + + # anchor_sections should work without Lua error + # https://github.com/rstudio/rmarkdown/pull/1964 + rmarkdown::render("rmd/anchor-sections.Rmd") + + } > > proc.time() user system elapsed 0.21 0.07 0.21