compile-typst-site 2.0.3

Command-line program for static site generation using Typst.
Documentation
1
2
3
4
5
6
7
8
9
use anyhow::Result;
use compile_typst_site::internals::config::Config;
use compile_typst_site::internals::entrypoint;

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

    Ok(())
}