1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/* SPDX-License-Identifier: MIT OR Apache-2.0 SPDX-FileCopyrightText: © 2023-2026 Bruce D'Arcus and Citum contributors */ #![allow(missing_docs, reason = "bin")] mod args; mod commands; mod output; mod style_browser; mod style_resolver; mod table; mod typst_pdf; fn main() { if let Err(e) = commands::run() { eprintln!("\nError: {e}"); std::process::exit(1); } }