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, };