compile-typst-site 2.1.0

Command-line program for static site generation using Typst.
Documentation
# Contributing


See <https://wade-cheng.com/compile-typst-site/contributing.html>.

The rest of this document describes how to build the documentation.

The documentation is built with [sphinx-doc](https://www.sphinx-doc.org) and the
[furo](https://pradyunsg.me/furo/) theme. We also recommend using
`sphinx-autobuild`.

To build the docs, install the dependencies:

```
pip install -r docs/requirements.txt
```

To build the documentation with `sphinx-autobuild`, simply run:

```
pip install sphinx-autobuild  # only needed for first time using autobuild
sphinx-autobuild docs docs_out
```

This will watch your files for changes and update your build on save. Or,
manually,

```
sphinx-build docs docs_out
cd docs_out
python -m http.server
```

You will be able to view the site locally at
[http://127.0.0.1:8000](http://127.0.0.1:8000).