A. Quarto Web Site

This is a Quarto website that will contain all the strom project.

It uses “Auto Generation” to populate the contents of the web site, so al lthe qmd files will be included. You just need to arrange them in folders so they will be arranged in the navigation accordingly.

The website is a sub-directory of the main project. We want everything relative to the main project. Therefore, when rendering/previewing the website, you should set the working directory. For example, using Quarto’s CLI:

quarto preview /OneDrive/All/R/strom/quarto --execute-dir /OneDrive/All/R/strom

or, relative to the current directory in the shell, simply:

quarto render 'quarto' --execute-dir '.'

Otherwise, Quarto would use the website sub-directory as the working directory to run the code. And we do not want that!

Here’s a workaround that seems to work to control the order of execution of the different files in the project https://github.com/quarto-dev/quarto-cli/discussions/6944

quarto render ‘quarto’ –execute-dir ‘.’ ; ..html