compile-typst-site 0.2.2

Binary tool for static site generation using Typst.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Compile a site directory structure from Typst files to HTML.
//!
//! Currently, we use out-of-process calls for everything. Might stand to refactor to pure functions as core functionality? Hmm.
//!
//! Also, not really usable as a crate because we set up argument parsing to generate our config. Hmm.

pub mod compile;
pub mod config;
pub mod entrypoint;
pub mod logging;