xberg 1.0.0

High-performance document intelligence library for Rust. Extract text, metadata, and structured data from PDFs, Office documents, images, and 98 formats and 306 programming languages via tree-sitter code intelligence with async/sync APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// TSV (tab-separated value) output parser for Tesseract word-level bounding boxes.
pub mod tsv_parser;

#[cfg(feature = "paddle-ocr")]
pub(crate) use crate::table_core::HocrWord;
pub(crate) use crate::table_core::{reconstruct_table, table_to_markdown};

#[cfg(feature = "pdf")]
pub(crate) use crate::pdf::table_reconstruct::post_process_table;

pub(crate) use tsv_parser::extract_words_from_tsv;