unpdf 0.4.5

High-performance PDF content extraction to Markdown, text, and JSON
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Custom PDF parser — lightweight, purpose-built for text extraction.

pub mod content;
pub mod crypt;
pub mod document;
pub mod stream;
pub mod tokenizer;
pub mod xref;

pub use document::RawDocument;
pub use tokenizer::{PdfDict, PdfObject, PdfStream};