tinymist-world
Typst's World implementation for tinymist.
Example: Resolves a system universe from system arguments
let args = parse;
let universe = args
.resolve_system
.expect;
Example: Runs a typst compilation
let world = verse.snapshot;
// in current thread
let doc = compile_opt?;
// the snapshot is Send + Sync
spawn;