When used in a loop, runs do not outputs
because knit_print
method is not called.
Use the function to force printing. Also you should tell the chunk
to use results 'as-is' (by adding results='asis'
to your chunk header).
knit_print_run(x, ...)
a run object, result of a run function from officer package
unused arguments
None. the function only print XML code.
Other functions that force printing:
knit_print_block()
library(rmarkdown)
rmd_file_src <- system.file(
package = "officedown", "examples", "word_loop.Rmd")
rmd_file_des <- tempfile(fileext = ".Rmd")
if(pandoc_available()){
file.copy(rmd_file_src, to = rmd_file_des)
docx_file_1 <- tempfile(fileext = ".docx")
render(rmd_file_des, output_file = docx_file_1, quiet = TRUE)
if(file.exists(docx_file_1)){
message("file ", docx_file_1, " has been written.")
}
}
#> file /tmp/Rtmpod7n2k/file236c71f1dcc0.docx has been written.