//! Unified rendering of `DocumentStructure` to output formats.
//!
//! Provides format-specific renderers that walk a document tree and produce
//! markdown, plain text, or HTML output. This replaces per-extractor ad-hoc
//! text generation with a single, consistent rendering pipeline.
pub use render_to_markdown;
pub use render_to_plain;