easypdf-markdown 0.1.1

Deterministic PDF to Markdown conversion for easypdf-rust (includes render, table detection, and OCR)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! 确定性 Markdown 渲染器。

mod escaping;
mod list;
mod renderer;
mod table;

pub use renderer::MarkdownRenderer;

#[cfg(test)]
#[allow(
    clippy::uninlined_format_args,
    clippy::float_cmp,
    clippy::single_char_pattern,
    clippy::unnecessary_wraps
)]
mod tests;