Quarto templates and guidance
For Quarto, the _quarto.yml file controls most aspects of the documentation build, style, table of contents, and extension functionality. Avoid adding custom CSS or JavaScript as it makes the doc build fragile and difficult to maintain consistency.
Use the Quarto template provided in this repository. For more information, see the Quarto documentation.
Doc builds and previews
You should build or preview the documentation locally before submitting documentation changes.
Install required packages
Install Quarto from quarto.org/docs/get-started.
Install any required Python or R dependencies:
pip install -r docs/requirements.txt
Preview the docs in a browser
Run a local server with:
quarto previewThis will watch for changes and automatically rebuild.
A browser window will open automatically (typically at http://localhost:4200). The preview will rebuild to reflect changes each time a source file is updated and saved.
Build the docs
Build the documents:
quarto renderThe built documents will be in
_site/(for websites) or_book/(for books).