kreuzberg 4.6.1

High-performance document intelligence library for Rust. Extract text, metadata, and structured data from PDFs, Office documents, images, and 88+ formats with async/sync APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Unified rendering of `DocumentStructure` to output formats.
//!
//! Provides format-specific renderers that walk a document tree and produce
//! markdown, plain text, or HTML output. This replaces per-extractor ad-hoc
//! text generation with a single, consistent rendering pipeline.

mod markdown;
mod plain;

pub use markdown::render_to_markdown;
pub use plain::render_to_plain;