//! Zorto — the AI-native static site generator (SSG) with executable code blocks.
//!
//! This crate provides the CLI binary and the `run` entry point used by
//! the PyO3 Python bindings.
pub use zorto_core as core;
pub use config;
pub use content;
pub use site;
pub
/// Run the zorto CLI with the given arguments.
///
/// This is the main entry point, equivalent to calling `zorto` on the command line.
/// Pass `std::env::args()` for normal use, or synthetic args for testing.