compile-typst-site 0.3.1

Binary tool for static site generation using Typst.
Documentation
1
2
3
4
5
6
7
8
use anyhow::Result;
use compile_typst_site::config::Config;

fn main() -> Result<()> {
    compile_typst_site::entrypoint::run(&Config::new())?;

    Ok(())
}