From 9cb4f43ee2ae6ed3c458c24ae475a84801492450 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 17:18:31 +0200 Subject: [PATCH] [Sync to prerelease] fix: `docs/projects/scripts.qmd` - fix typo (#1338) Co-authored-by: Gewerd-Strauss <80548781+Gewerd-Strauss@users.noreply.github.com> --- docs/projects/scripts.qmd | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/projects/scripts.qmd b/docs/projects/scripts.qmd index cf67a8f95..acb3ce760 100644 --- a/docs/projects/scripts.qmd +++ b/docs/projects/scripts.qmd @@ -54,12 +54,12 @@ Pre and post render scripts are run with the main project directory. The following environment variables are passed to pre and post-render scripts (note that all paths are *relative* to the main project directory): -| Variable | Description | +| Variable | Description | |-----------------|-------------------------------------------------------| -| `QUARTO_PROJECT_RENDER_ALL` | Set to "1" if this is a render of all files in the project (as opposed to an incremental render or a render for preview). This unset if Quarto is not rendering all files. | -| `QUARTO_PROJECT_OUTPUT_DIR` | Output directory | -| `QUARTO_PROJECT_INPUT_FILES` | Newline separated list of all input files being rendered (passed only to `pre-render`) | -| `QUARTO_PROJECT_OUTPUT_FILES` | Newline separated list of all output files rendered (passed only to `post-render`). | +| `QUARTO_PROJECT_RENDER_ALL` | Set to "1" if this is a render of all files in the project (as opposed to an incremental render or a render for preview). This is unset if Quarto is not rendering all files. | +| `QUARTO_PROJECT_OUTPUT_DIR` | Output directory | +| `QUARTO_PROJECT_INPUT_FILES` | Newline separated list of all input files being rendered (passed only to `pre-render`) | +| `QUARTO_PROJECT_OUTPUT_FILES` | Newline separated list of all output files rendered (passed only to `post-render`). | The project metadata and render list will be re-computed after any pre-render scripts have executed, allowing them to modify this project data. For example, a pre-render script might generate additional `qmd` files or `ipynb` files that should be rendered.