rmarkdown
rmarkdown copied to clipboard
Dynamic Documents for R
This PR aims to solve #1336. Currently, I find two problems that needs someone's help - [ ] Support navigation to inactive tabs - Otherwise, users have to click the...
https://github.com/rstudio/rmarkdown/runs/7743229397?check_suite_focus=true It seems the daily pandoc binary is built on unbuntu 20 now and that cause issue on 18 where GLIBC 2.9 is not available. Or something like that. I...
Today `--self-contained` implies `--standalone`. Now `--embed-resources` will do the self contained mechanism but possibly without doing the standalone part. Equivalent of using custom template today with `--self-contained` and ``` $body$...
check for knitr child documents in R Markdown documents does not work with in-body chunk parameters
Via https://github.com/r-lib/pkgdown/issues/2168 The vignette below can be knit ```` --- title: "test2" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{test2} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r child="../man/rmd-fragments/boilerplate.Rmd"} ``` ```` but the one below cannot, the...
I recently have problems rendering a blastula email which I used to render weekly without problems. It might be caused by having switched from R 4.1.3 to R 4.2.1. I...
Take the following command: `rmarkdown::render("parsing_r_questions.Rmd", output_format = "md_document", output_file = "parse.md", run_pandoc = F) ` The output file will be `parsing_r_questions.knit.md` and not `parse.md`.
I commonly write `.Rmd` templates, that then get rendered to create a report with different input parameters. However, if more than one such job is being rendered at the same...
For a minimal example, put [this minimal example](https://github.com/rstudio/rmarkdown/pull/1405) in a rmarkdown website
As illustrated in this reproducible example, commented-out inline R-code can still throw errors: ```` --- title: "Untitled" author: "Caspar J. van Lissa" date: '2022-06-23' output: html_document --- ```{r} a ````...
Activate graphics for Pandoc also for custom template when `md` source contains only LaTeX figures.
Related to https://github.com/rstudio/bookdown/issues/1350#issuecomment-1163595061 \includegraphics in LaTeX requires the graphics package, which Pandoc only adds after a variable `graphics` https://github.com/jgm/pandoc/blob/e0dea96d6c1e7d6f19040cafd9ffde432de330d8/data/templates/default.latex#L258-L259 I think Pandoc activate the variable if images are detected in...