mod blocks;
mod classify;
mod cross_region;
mod flags;
mod headings;
mod hr;
mod inline;
mod lists;
mod paragraphs;
mod repetition;
mod tables;
pub use blocks::{Block, render_blocks};
pub use classify::classify_page_with_filters;
pub use headings::{build_heading_map, compute_body_size};
pub use repetition::{compute_header_footer_set, detect_single_page_chrome};
pub use tables::detect_table_rects;
pub(crate) use tables::{count_text_table_runs, validated_ruled_table_rects};
const MIN_ROW_HEIGHT_PT: f32 = 8.0;
#[cfg(test)]
pub(crate) mod test_helpers;