1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
//! The top-level `DocumentConverter`.
use std::collections::HashSet;
use crate::backend::{
is_deepseek_markdown, AsciiDocBackend, CsvBackend, DeclarativeBackend, DeepSeekBackend,
DoclingJsonBackend, DocxBackend, EmailBackend, EpubBackend, JatsBackend, LatexBackend,
MarkdownBackend, MhtmlBackend, OdfBackend, PptxBackend, UsptoBackend, WebVttBackend,
XbrlBackend, XlsxBackend,
};
/// Whether `text` begins with an XML prolog — an `<?xml …?>` declaration or a
/// non-HTML `<!DOCTYPE …>`. Used to route XML documents that arrived with a
/// text/Markdown extension (e.g. a JATS article saved as `.txt`) to the XML
/// backends. An HTML5 `<!DOCTYPE html>` is deliberately excluded.
fn looks_like_xml(text: &str) -> bool {
let head = text.trim_start();
if head.starts_with("<?xml") {
return true;
}
if let Some(rest) = head.get(..9) {
if rest.eq_ignore_ascii_case("<!doctype") {
return !head[9..]
.trim_start()
.to_ascii_lowercase()
.starts_with("html");
}
}
false
}
/// Pick the concrete XML backend for a generic `.xml` source by sniffing its
/// DOCTYPE / root element (the first part of the file).
fn sniff_xml(text: &str) -> InputFormat {
let head = &text[..text.len().min(4000)];
if head.contains("us-patent")
|| head.contains("patent-application-publication")
|| head.contains("PATDOC")
|| head.contains("<pap-v1")
{
InputFormat::XmlUspto
} else if crate::backend::xbrl::looks_like_xbrl(head) {
InputFormat::XmlXbrl
} else {
InputFormat::XmlJats
}
}
use crate::error::ConversionError;
use crate::format::InputFormat;
use crate::result::{ConversionResult, ConversionStatus};
use crate::source::SourceDocument;
use crate::stream::MarkdownStream;
use docling_core::ImageMode;
/// Routes a [`SourceDocument`] to the backend for its format and returns a
/// [`ConversionResult`].
///
/// The Rust analogue of `docling.document_converter.DocumentConverter`. In
/// Phase 0 the format→backend dispatch is a direct match; the Python notion of
/// per-format `FormatOption` (backend + pipeline + options) arrives with the
/// PDF/ML pipeline in a later phase.
#[derive(Debug, Default, Clone)]
pub struct DocumentConverter {
allowed_formats: Option<HashSet<InputFormat>>,
strict: bool,
fetch_images: bool,
no_table_former: bool,
no_ocr: bool,
use_web_browser: bool,
}
impl DocumentConverter {
/// A converter that accepts every supported format.
pub fn new() -> Self {
Self::default()
}
/// A converter restricted to an explicit set of formats. Sources of any
/// other format are rejected with [`ConversionError::UnsupportedFormat`].
pub fn with_allowed_formats(formats: impl IntoIterator<Item = InputFormat>) -> Self {
Self {
allowed_formats: Some(formats.into_iter().collect()),
strict: false,
fetch_images: false,
no_table_former: false,
no_ocr: false,
use_web_browser: false,
}
}
/// Select the Markdown export mode for documents this converter produces.
///
/// `false` (default) makes [`crate::DoclingDocument::export_to_markdown`]
/// reproduce docling's legacy output byte-for-byte; `true` makes it emit
/// cleaner, more conformant Markdown (code-fence languages preserved, no
/// inline-run spacing artifacts, no entity re-escaping). Rust-only — Python
/// docling has no such switch.
pub fn strict(mut self, strict: bool) -> Self {
self.strict = strict;
self
}
/// Fetch and embed external `<img>` images for HTML/EPUB sources.
///
/// Off by default (matching docling's `enable_*_fetch=False`), so output is
/// unchanged unless you opt in. When on, the HTML/EPUB backends resolve each
/// `<img src>` — `data:` URIs, local files (relative to the source file's
/// directory), `http(s)` URLs, and EPUB archive entries — and embed the
/// bytes, so they survive into JSON `ImageRef`s and
/// [`crate::DoclingDocument::export_to_markdown_with_images`].
///
/// Remote `http(s)` URLs are fetched over the network; enable only for input
/// you trust (it can otherwise be used to make the process issue requests).
pub fn fetch_images(mut self, fetch: bool) -> Self {
self.fetch_images = fetch;
self
}
/// Skip loading and running the TableFormer table-structure model for
/// PDF/image/METS sources.
///
/// Off by default. When enabled, table regions are still detected and
/// emitted, but their structure is reconstructed geometrically from cell
/// positions instead of the ONNX model's predicted structure — no model
/// load and no per-table inference, at the cost of table fidelity. Useful
/// when parsing speed matters more than exact table structure, especially
/// with [`convert_streaming`](Self::convert_streaming).
pub fn no_table_former(mut self, disable: bool) -> Self {
self.no_table_former = disable;
self
}
/// Skip layout detection, OCR, and TableFormer entirely for PDF/image/METS
/// sources — no model load, no inference of any kind.
///
/// Off by default. When enabled, the PDF's embedded text cells are grouped by
/// line and emitted as plain paragraphs in reading order: no headings, lists,
/// tables, code blocks, or pictures, since that structure comes from the
/// layout model. The fastest possible PDF path, but pages with no embedded
/// text layer (scanned/image-only PDFs) yield no text at all — convert those
/// without this flag. Implies [`no_table_former`](Self::no_table_former).
pub fn no_ocr(mut self, disable: bool) -> Self {
self.no_ocr = disable;
self
}
/// Pre-render HTML-routing input in a headless browser before parsing.
///
/// Off by default. When enabled, HTML sources — and MHTML/EPUB, which
/// assemble HTML from their archives — are loaded in the system Chromium
/// (driven from Rust over the DevTools protocol — no Node/Playwright) so the
/// CSS cascade is resolved: elements the browser computes as `display:none`
/// (e.g. a stylesheet-collapsed nav menu) are removed before the normal HTML
/// backend runs. This is the one behaviour a pure-Rust parse can't reproduce;
/// everything else (structure, tables, KVP, formatting) is still handled in
/// Rust on the cleaned HTML.
///
/// Requires the crate's `web-browser` Cargo feature; without it, converting
/// an HTML source with this enabled returns [`ConversionError::Browser`].
pub fn use_web_browser(mut self, enable: bool) -> Self {
self.use_web_browser = enable;
self
}
/// Return `html` unchanged, or — when [`use_web_browser`](Self::use_web_browser)
/// is on — its headless-browser-cleaned form (computed-hidden elements
/// removed). Borrows in the common (disabled) case; only allocates when the
/// browser actually runs.
fn maybe_prerender<'a>(
&self,
html: &'a str,
) -> Result<std::borrow::Cow<'a, str>, ConversionError> {
crate::backend::maybe_prerender_html(html, self.use_web_browser)
}
/// Convert a source document to Markdown **incrementally**, returning an
/// iterator of Markdown chunks (with picture placeholders).
///
/// Concatenating every `Ok` chunk reproduces
/// [`convert`](Self::convert)`(...).document.export_to_markdown()`
/// byte-for-byte. The win is for PDF, whose pages are processed in parallel:
/// each page's Markdown is emitted in document order as soon as it is ready, so
/// output starts before the whole document is converted. Other formats build
/// their document up front and stream it through the same interface.
///
/// Streaming is Markdown-only — JSON needs the whole node tree, so there is no
/// streaming JSON. The conversion runs on a background thread; dropping the
/// returned [`MarkdownStream`] cancels it.
pub fn convert_streaming(
&self,
source: SourceDocument,
) -> Result<MarkdownStream, ConversionError> {
self.convert_streaming_images(source, ImageMode::Placeholder)
}
/// Like [`convert_streaming`](Self::convert_streaming) but with an explicit
/// picture [`ImageMode`]. Only [`ImageMode::Placeholder`] and
/// [`ImageMode::Embedded`] are streamable; [`ImageMode::Referenced`] writes
/// separate image files and needs the buffered
/// [`DoclingDocument::export_to_markdown_with_images`] path, so it is rejected
/// here.
///
/// [`DoclingDocument::export_to_markdown_with_images`]: docling_core::DoclingDocument::export_to_markdown_with_images
pub fn convert_streaming_images(
&self,
source: SourceDocument,
image_mode: ImageMode,
) -> Result<MarkdownStream, ConversionError> {
if image_mode == ImageMode::Referenced {
return Err(ConversionError::Streaming(
"referenced image mode writes image files; use convert(...).document.\
export_to_markdown_with_images(ImageMode::Referenced, ..) instead"
.into(),
));
}
if let Some(allowed) = &self.allowed_formats {
if !allowed.contains(&source.format) {
return Err(ConversionError::UnsupportedFormat(source.format));
}
}
Ok(crate::stream::spawn(
self.clone(),
source,
image_mode,
self.strict,
self.no_table_former,
self.no_ocr,
))
}
/// Convert a single source document.
pub fn convert(&self, source: SourceDocument) -> Result<ConversionResult, ConversionError> {
if let Some(allowed) = &self.allowed_formats {
if !allowed.contains(&source.format) {
return Err(ConversionError::UnsupportedFormat(source.format));
}
}
let mut document = match source.format {
// A legacy APS (Automated Patent System) plain-text patent (`PATN`
// first record) is reconstructed verbatim, mirroring docling.
InputFormat::Md if crate::backend::uspto::looks_like_aps(source.text()?) => {
crate::backend::uspto::convert_aps(&source)?
}
// A text/Markdown-typed file that is actually an XML document (e.g. a
// JATS article saved with a `.txt` extension) routes to the XML
// backends by content, mirroring docling's content-based detection.
InputFormat::Md if looks_like_xml(source.text()?) => match sniff_xml(source.text()?) {
InputFormat::XmlUspto => UsptoBackend.convert(&source)?,
InputFormat::XmlXbrl => XbrlBackend.convert(&source)?,
// A JATS/other XML document saved as `.txt` is reconstructed
// generically (element-by-element), as docling does — the
// semantic JATS backend is only used for real `.xml`/`.nxml`.
_ => crate::backend::jats::convert_generic(&source)?,
},
// DeepSeek-OCR annotated Markdown (VLM token format) is detected by
// its `<|ref|>…[[bbox]]` annotations and parsed separately.
InputFormat::Md if is_deepseek_markdown(source.text()?) => {
DeepSeekBackend.convert(&source)?
}
InputFormat::Md => MarkdownBackend {
strict: self.strict,
}
.convert(&source)?,
InputFormat::Csv => CsvBackend.convert(&source)?,
InputFormat::Html => {
// Optionally resolve the CSS cascade in a headless browser first
// (strips computed-hidden elements); everything else stays in the
// Rust HTML backend, which runs on the cleaned HTML.
let html = self.maybe_prerender(source.text()?)?;
if self.fetch_images {
let resolver = crate::backend::FsImageResolver::new(
source.base_dir().map(|p| p.to_path_buf()),
);
crate::backend::convert_html(&source.name, &html, &resolver)
} else {
crate::backend::convert_html(&source.name, &html, &crate::backend::NoFetch)
}
}
InputFormat::Asciidoc => AsciiDocBackend.convert(&source)?,
InputFormat::Xlsx => XlsxBackend.convert(&source)?,
InputFormat::Pptx => PptxBackend.convert(&source)?,
InputFormat::Docx => DocxBackend.convert(&source)?,
InputFormat::Vtt => WebVttBackend.convert(&source)?,
InputFormat::Email => EmailBackend.convert(&source)?,
InputFormat::Mhtml => MhtmlBackend {
use_web_browser: self.use_web_browser,
}
.convert(&source)?,
InputFormat::Epub => EpubBackend {
fetch_images: self.fetch_images,
use_web_browser: self.use_web_browser,
}
.convert(&source)?,
InputFormat::JsonDocling => DoclingJsonBackend.convert(&source)?,
InputFormat::Latex => LatexBackend.convert(&source)?,
// A bare `.xml` defaults to XmlJats; sniff the content to route to the
// right XML backend (docling distinguishes by DOCTYPE / root element).
InputFormat::XmlJats | InputFormat::XmlUspto | InputFormat::XmlXbrl => {
match sniff_xml(source.text()?) {
InputFormat::XmlUspto => UsptoBackend.convert(&source)?,
InputFormat::XmlXbrl => XbrlBackend.convert(&source)?,
_ => JatsBackend.convert(&source)?,
}
}
InputFormat::Odt | InputFormat::Ods | InputFormat::Odp => {
OdfBackend.convert(&source)?
}
InputFormat::Pdf => docling_pdf::convert_with_options(
&source.bytes,
None,
&source.name,
self.no_table_former,
self.no_ocr,
)
.map_err(|e| ConversionError::Parse(e.to_string()))?,
InputFormat::Image => docling_pdf::convert_image_with_options(
&source.bytes,
&source.name,
self.no_table_former,
self.no_ocr,
)
.map_err(|e| ConversionError::Parse(e.to_string()))?,
InputFormat::MetsGbs => docling_pdf::convert_mets_gbs_with_options(
&source.bytes,
&source.name,
self.no_table_former,
self.no_ocr,
)
.map_err(|e| ConversionError::Parse(e.to_string()))?,
// Audio → Whisper ASR (symphonia decode + ONNX inference); each
// transcribed segment becomes a `[time: start-end] text` paragraph.
InputFormat::Audio => docling_asr::convert_audio(&source.bytes, &source.name)
.map_err(|e| ConversionError::Parse(e.to_string()))?,
other => return Err(ConversionError::UnsupportedFormat(other)),
};
// Carry the mode so `result.document.export_to_markdown()` reflects it.
document.strict_markdown = self.strict;
Ok(ConversionResult {
document,
status: ConversionStatus::Success,
input_name: source.name,
format: source.format,
})
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn end_to_end_markdown() {
let src =
SourceDocument::from_bytes("doc", InputFormat::Md, b"# Hello\n\nWorld.\n".to_vec());
let result = DocumentConverter::new().convert(src).unwrap();
assert_eq!(result.status, ConversionStatus::Success);
assert_eq!(result.document.export_to_markdown(), "# Hello\n\nWorld.\n");
}
#[test]
fn rejects_unimplemented_format() {
// XML DocLang is the one remaining format without a backend (audio now
// routes to the ASR pipeline).
let src = SourceDocument::from_bytes("doc", InputFormat::XmlDoclang, b"<doc>".to_vec());
let err = DocumentConverter::new().convert(src).unwrap_err();
assert!(matches!(
err,
ConversionError::UnsupportedFormat(InputFormat::XmlDoclang)
));
}
}