html-to-markdown-rs 3.3.3

High-performance HTML to Markdown converter using the astral-tl parser. Part of the Kreuzberg ecosystem.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Core types for structured HTML extraction results.
//!
//! These types are aligned with kreuzberg's `DocumentStructure` model for seamless integration.

mod document;
mod result;
pub mod structure_builder;
pub mod structure_collector;
mod tables;
mod warnings;

pub use document::{AnnotationKind, DocumentNode, DocumentStructure, NodeContent, TextAnnotation};
pub use result::ConversionResult;
pub use structure_builder::build_document_structure;
pub use structure_collector::{StructureCollector, StructureCollectorHandle};
pub use tables::{GridCell, TableData, TableGrid};
pub use warnings::{ProcessingWarning, WarningKind};