zenith-tool 0.0.1

The Zenith command-line interface (the `zenith` binary) for the design-document toolchain.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `zenith inspect` command — module wiring.
//!
//! - `document`    — error type, tree types, tree builders, node finder,
//!   geometry helpers, human renderers, and the public `run` entry point.
//! - [`recipes`]     — recipe-block JSON builder and human renderer.

mod document;
pub mod recipes;

pub use document::{
    InspectCmdErr, InspectNodeOutput, InspectOutput, NodeEntry, NodeGeometry, PageEntry,
    build_doc_tree, find_node_tree, run, summary,
};