pdf2md 0.1.0

PDF → Markdown extractor with figure rasterization, table & banner detection. Built on pdfium-render.
Documentation
1
2
3
4
5
6
7
8
9
#[derive(thiserror::Error, Debug)]
pub enum PdfError {
    #[error("pdfium binding failed: {0}")]
    PdfiumBind(String),
    #[error("pdf parse error: {0}")]
    PdfParse(String),
    #[error("io error: {0}")]
    Io(#[from] std::io::Error),
}