//! Block classification for the markdown emitter.
//!
//! Consumes `ProjectedLine` entries from each `ParsedPage` and groups them into
//! a sequence of `Block`s: headings, paragraphs, list items, code blocks,
//! tables (ruled and borderless), horizontal rules, and figures. Tabular
//! regions that can't be classified confidently fall back to a fenced grid
//! projection rather than a mangled pipe table.
pub use ;
pub use classify_page_with_filters;
pub use ;
pub use ;
pub use detect_table_rects;
/// Minimum plausible text-row height in points. Floors a `bbox.height` before
/// it is multiplied into a band / tolerance window, so a degenerate near-zero
/// glyph box can't collapse that window to nothing. Shared by the table
/// HR-suppress headroom (`classify.rs`) and outline y-tolerance
/// (`headings.rs`) so the two stay in sync.
const MIN_ROW_HEIGHT_PT: f32 = 8.0;
pub