pdfni 0.1.0

Extract tables and Markdown from text-embedded PDFs, with a built-in pure-Rust PDF reader adapted from Mozilla pdf.js.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 同梱データ(pdf.js 由来の静的表と .bcmap)

// フォント表は tools/gen_font_data.py が生成
pub mod encodings;
pub mod glyphlist;
pub mod metrics;
pub mod std_fonts;

// .bcmap 索引は tools/gen_bcmap_index.py が生成
pub mod bcmaps;

pub use encodings::*;
pub use glyphlist::*;
pub use metrics::*;
pub use std_fonts::*;