pdf_oxide 0.3.76

The fastest Rust PDF library — 0.8ms mean, 5× faster than the industry leaders, 100% pass rate on 3,830 real-world PDFs. Text extraction, Markdown/HTML conversion, PDF creation and editing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Text processing utilities for the extraction pipeline.
//!
//! This module provides various text post-processing operations that improve
//! extraction quality by normalizing whitespace, detecting citations, and
//! enhancing encoding fallback chains.

pub mod citations;
pub mod whitespace;

pub use citations::{Citation, CitationDetector, CitationType};
pub use whitespace::WhitespaceNormalizer;