1//! Canonical formatter for Zenith AST → `.zen` text. 2//! 3//! The only public surface is [`format_document`], which is delegated to by 4//! `KdlAdapter::format`. 5 6mod writer; 7 8pub use writer::format_document;