I'm trying to get a small R script to be called before rendering in a quarto document, but nothing I do causes the script to be run.
Here's a sample
---
title: "test_pre_render"
format: pdf
editor: source
pre-render: test.R
---
<!-- For the pre-render script -->
<!-- create a file called test.R -->
<!-- and include the following line in it -->
<!-- writeLines(date(), 'test.qmd') -->
<!-- You will need to run this script once to create -->
<!-- the first version of test.qmd to avoid a file -->
<!-- not found error. -->
## Section
This is the date from the current run. (add an extra ` in 2 places below to make this run)
``{r}
#| echo: false
print(date())
``
The next date corresponds to when the test.R script last ran. It should be close to the date of the current run.
\newline
{{< include test.qmd >}}
To recreate this, you'll have to create a test.R file and run it manually once. See the instructions in the example.
Whatever I do, I cannot get the test.R file to be called during a pre-render and this can be seen because the contents of the test.qmd file never change.
I'm running the latest R Studio 2022.07.1 Build 554, R version 4.2.1, quarto version 1.0.36 all on Ubuntu 20.04.