Skip to main content

folio_pdf/text/
mod.rs

1//! PDF text extraction and search.
2//!
3//! Extracts text from PDF pages by interpreting content streams with
4//! font encoding information. Also provides text search across documents.
5
6mod extractor;
7mod search;
8
9pub use extractor::TextExtractor;
10pub use search::{SearchOptions, SearchResult, TextSearch};