Rust API Reference
Rust API Reference v3.8.3
Section titled “Rust API Reference v3.8.3”Functions
Section titled “Functions”convert()
Section titled “convert()”Convert HTML to Markdown, Djot, or plain text.
Returns a ConversionResult with converted content plus optional metadata,
document structure, table data, inline images, and warnings depending on the
enabled features and conversion options.
Some(options), or None. Language bindings expose the same option
fields through native constructors or optional parameters.
Errors:
Returns an error if HTML parsing fails or if the input contains invalid UTF-8.
Signature:
pub fn convert(html: &str, options: Option<ConversionOptions>) -> Result<ConversionResult, Error>Example:
use html_to_markdown_rs::{convert, ConversionOptions};
let html = "<h1>Hello World</h1>";
// Bare options — most ergonomic.let result = convert(html, ConversionOptions::default()).unwrap();assert!(result.content.as_deref().unwrap_or("").contains("Hello World"));
// `None` falls back to defaults.let result = convert(html, None).unwrap();assert!(result.content.as_deref().unwrap_or("").contains("Hello World"));```rust
**Parameters:**
| Name | Type | Required | Description ||------|------|----------|-------------|| `html` | `String` | Yes | The html || `options` | `Option<ConversionOptions>` | No | The options to use |
**Returns:** `ConversionResult`
**Errors:** Returns `Err(Error)`.
---
### Types
#### ConversionOptions
Main conversion options for HTML to Markdown conversion.
Use `ConversionOptions::builder()` to construct, or `the default constructor` for defaults.
| Field | Type | Default | Description ||-------|------|---------|-------------|| `heading_style` | `HeadingStyle` | `HeadingStyle::Atx` | Heading style to use in Markdown output (ATX `#` or Setext underline). || `list_indent_type` | `ListIndentType` | `ListIndentType::Spaces` | How to indent nested list items (spaces or tab). || `list_indent_width` | `usize` | `2` | Number of spaces (or tabs) to use for each level of list indentation. || `bullets` | `String` | `"-*+"` | Bullet character(s) to use for unordered list items (e.g. `"-"`, `"*"`). || `strong_em_symbol` | `String` | `"*"` | Character used for bold/italic emphasis markers (`*` or `_`). || `escape_asterisks` | `bool` | `false` | Escape `*` characters in plain text to avoid unintended bold/italic. || `escape_underscores` | `bool` | `false` | Escape `_` characters in plain text to avoid unintended bold/italic. || `escape_misc` | `bool` | `false` | Escape miscellaneous Markdown metacharacters (`\[\]()#` etc.) in plain text. || `escape_ascii` | `bool` | `false` | Escape ASCII characters that have special meaning in certain Markdown dialects. || `code_language` | `String` | `""` | Default language annotation for fenced code blocks that have no language hint. || `autolinks` | `bool` | `true` | Automatically convert bare URLs into Markdown autolinks. || `default_title` | `bool` | `false` | Emit a default title when no `<title>` tag is present. || `br_in_tables` | `bool` | `false` | Render `<br>` elements inside table cells as literal line breaks. || `compact_tables` | `bool` | `false` | Emit tables without column padding (compact GFM format). When `true`, column widths are not computed and cells are emitted with no trailing spaces. Separator rows use exactly `---` per column. Produces token-efficient output suitable for RAG / LLM contexts. Default `false` (aligned padding preserved). || `highlight_style` | `HighlightStyle` | `HighlightStyle::DoubleEqual` | Style used for `<mark>` / highlighted text (e.g. `==text==`). || `extract_metadata` | `bool` | `true` | Populate `result.metadata` with `<head>` / `<meta>` extraction (title, description, Open Graph, Twitter Card, JSON-LD, …). Default `true`. Disabling skips the metadata pass only — table extraction into `result.tables` runs unconditionally. || `whitespace_mode` | `WhitespaceMode` | `WhitespaceMode::Normalized` | Controls how whitespace sequences are normalised in the converted output. - `WhitespaceMode::Normalized` (default) — collapses consecutive whitespace characters (spaces, tabs, newlines) to a single space, matching browser rendering behaviour. - `WhitespaceMode::Strict` — preserves all whitespace exactly as it appears in the source HTML, including runs of spaces and embedded newlines. Choose `Strict` only when the source HTML uses deliberate whitespace (e.g. pre-formatted content outside `<pre>` tags). For most documents `Normalized` produces cleaner output. || `strip_newlines` | `bool` | `false` | Strip all newlines from the output, producing a single-line result. || `wrap` | `bool` | `false` | Wrap long lines at `wrap_width` characters. || `wrap_width` | `usize` | `80` | Maximum output line width in characters when `wrap` is `true` (default `80`). Lines are broken at word boundaries so that no line exceeds this length. A value of `0` is treated as "no limit" — equivalent to leaving `wrap` disabled. Has no effect when `wrap` is `false`. || `convert_as_inline` | `bool` | `false` | Treat the entire document as inline content (no block-level wrappers). || `sub_symbol` | `String` | `""` | Markdown notation for subscript text (e.g. `"~"`). || `sup_symbol` | `String` | `""` | Markdown notation for superscript text (e.g. `"^"`). || `newline_style` | `NewlineStyle` | `NewlineStyle::Spaces` | How to encode hard line breaks (`<br>`) in Markdown. || `code_block_style` | `CodeBlockStyle` | `CodeBlockStyle::Backticks` | Style used for fenced code blocks (backticks or tilde). || `keep_inline_images_in` | `Vec<String>` | `vec!\[\]` | HTML tag names whose `<img>` children are kept inline instead of block. || `preprocessing` | `PreprocessingOptions` | — | Options for the HTML pre-processing pass applied before conversion begins. Pre-processing runs before the HTML is handed to the converter and can perform operations such as unwrapping redundant wrapper elements, removing tracking pixels, and normalising vendor-specific markup. See `PreprocessingOptions` for the full set of knobs. Defaults to `PreprocessingOptions::default()`, which enables the standard cleaning passes. Set individual fields on `PreprocessingOptions` (or construct via `ConversionOptions::builder`) to opt in or out of specific passes. || `encoding` | `String` | `"utf-8"` | Expected character encoding of the input HTML (default `"utf-8"`). || `debug` | `bool` | `false` | Emit debug information during conversion. || `strip_tags` | `Vec<String>` | `vec!\[\]` | HTML tag names whose content is stripped from the output entirely. || `preserve_tags` | `Vec<String>` | `vec!\[\]` | HTML tag names that are preserved verbatim in the output. || `skip_images` | `bool` | `false` | Skip conversion of `<img>` elements (omit images from output). || `url_escape_style` | `UrlEscapeStyle` | `UrlEscapeStyle::Angle` | URL encoding strategy for link and image destinations. Controls how special characters in URL destinations are escaped: - `UrlEscapeStyle::Angle` (default) — wraps the destination in angle brackets when it contains spaces or newlines. Some parsers misinterpret `>` inside such a destination. - `UrlEscapeStyle::Percent` — percent-encodes every character that is not an RFC 3986 unreserved character or `/`, producing a destination that all Markdown parsers handle correctly even when the URL contains `<`, `>`, spaces, or parentheses. || `link_style` | `LinkStyle` | `LinkStyle::Inline` | Link rendering style (inline or reference). || `output_format` | `OutputFormat` | `OutputFormat::Markdown` | Target output format (Markdown, plain text, etc.). || `include_document_structure` | `bool` | `false` | Include structured document tree in result. || `extract_images` | `bool` | `false` | Extract inline images from data URIs and SVGs. || `max_image_size` | `u64` | `5242880` | Maximum decoded image size in bytes (default 5MB). || `capture_svg` | `bool` | `false` | Capture SVG elements as images. || `infer_dimensions` | `bool` | `true` | Infer image dimensions from data. || `max_depth` | `Option<usize>` | `None` | Maximum DOM traversal depth. `None` uses the library's internal native-stack safety limit. Explicit values above that safety limit are clamped to prevent process-aborting stack overflows on pathologically deep DOM trees. || `exclude_selectors` | `Vec<String>` | `vec!\[\]` | CSS selectors for elements to exclude entirely (element + all content). Unlike `strip_tags` (which removes the tag wrapper but keeps children), excluded elements and all their descendants are dropped from the output. Supports any CSS selector that `tl` supports: tag names, `.class`, `#id`, `\[attribute\]`, etc. Invalid selectors are silently skipped at conversion time. Example: `vec!\[".cookie-banner".into(), "#ad-container".into(), "\[role='complementary'\]".into()\]` || `tier_strategy` | `TierStrategy` | `TierStrategy::Auto` | Which conversion tier to use. - `TierStrategy::Auto` (default) — automatically choose the best path. - `TierStrategy::Tier2` — always use the Tier-2 DOM-walk path. - `TierStrategy::Tier1` — always attempt Tier-1 (testkit only). || `visitor` | `Option<VisitorHandle>` | `None` | Optional visitor for custom traversal logic. When set, the visitor's callbacks are invoked for matching HTML elements during conversion, allowing custom output, skipping, or HTML preservation. See `HtmlVisitor`. |
##### Methods
###### default()
**Signature:**
```rustpub fn default() -> ConversionOptionsExample:
let result = ConversionOptions::default();Returns: ConversionOptions
ConversionResult
Section titled “ConversionResult”The primary result of HTML conversion and extraction.
Contains the converted text output, optional structured document tree, metadata, extracted tables, images, and processing warnings.
| Field | Type | Default | Description |
|---|---|---|---|
content |
Option<String> |
Default::default() |
Converted text output in the selected format: Markdown, Djot, or plain text. |
document |
Option<DocumentStructure> |
Default::default() |
Structured document tree with semantic elements. Populated when ConversionOptions::include_document_structure is true. None otherwise (the default), which avoids the overhead of building the tree. When present, the tree mirrors the converted document: headings open Group sections, paragraphs and list items carry inline TextAnnotations, and tables reference the same TableGrid data exposed in Self::tables. Note: this field is independent of the metadata feature flag. Document structure collection is always available at runtime; it is gated only by the runtime option, not by a compile-time feature. |
metadata |
HtmlMetadata |
— | Extracted HTML metadata (title, OG, links, images, structured data). |
tables |
Vec<TableData> |
vec!\[\] |
Extracted tables with structured cell data and markdown representation. |
images |
Vec<String> |
vec!\[\] |
Extracted inline images from data URIs and SVGs. Populated when the inline-images feature is enabled and extract_images is true. Bindings may expose a simplified image representation or omit this Rust-only payload depending on backend support for binary image data. |
warnings |
Vec<ProcessingWarning> |
vec!\[\] |
Non-fatal processing warnings. |
DocumentMetadata
Section titled “DocumentMetadata”Document-level metadata extracted from <head> and top-level elements.
Contains all metadata typically used by search engines, social media platforms, and browsers for document indexing and presentation.
| Field | Type | Default | Description |
|---|---|---|---|
title |
Option<String> |
Default::default() |
Document title from <title> tag |
description |
Option<String> |
Default::default() |
Document description from <meta name="description"> tag |
keywords |
Vec<String> |
vec!\[\] |
Document keywords from <meta name="keywords"> tag, split on commas |
author |
Option<String> |
Default::default() |
Document author from <meta name="author"> tag |
canonical_url |
Option<String> |
Default::default() |
Canonical URL from <link rel="canonical"> tag |
base_href |
Option<String> |
Default::default() |
Base URL from <base href=""> tag for resolving relative URLs |
language |
Option<String> |
Default::default() |
Document language from lang attribute |
text_direction |
Option<TextDirection> |
Default::default() |
Document text direction from dir attribute |
open_graph |
HashMap<String, String> |
HashMap::new() |
Open Graph metadata (og:* properties) for social media Keys like “title”, “description”, “image”, “url”, etc. |
twitter_card |
HashMap<String, String> |
HashMap::new() |
Twitter Card metadata (twitter:* properties) Keys like “card”, “site”, “creator”, “title”, “description”, “image”, etc. |
meta_tags |
HashMap<String, String> |
HashMap::new() |
Additional meta tags not covered by specific fields Keys are meta name/property attributes, values are content |
DocumentNode
Section titled “DocumentNode”A single node in the document tree.
| Field | Type | Default | Description |
|---|---|---|---|
id |
String |
— | Deterministic node identifier. |
content |
NodeContent |
— | The semantic content of this node. |
parent |
Option<u32> |
None |
Index of the parent node (None for root nodes). |
children |
Vec<u32> |
/* serde(default) */ |
Indices of child nodes in reading order. |
annotations |
Vec<TextAnnotation> |
/* serde(default) */ |
Inline formatting annotations (bold, italic, links, etc.) with byte offsets into the text. |
attributes |
Option<HashMap<String, String>> |
None |
Format-specific attributes preserved from the source HTML element. Keys are lowercased attribute names as they appear in the HTML (e.g. "class", "id", "data-foo"). Values are the raw attribute strings, copied verbatim from the source — no HTML entity decoding is applied here. The map is None when no attributes are present (omitted entirely in serialized output). Not every HTML attribute is preserved: only attributes that carry semantic or structural significance for the node type are collected. For example, heading nodes capture the "id" attribute for anchor linking; other element-level attributes may be silently dropped. |
DocumentStructure
Section titled “DocumentStructure”A structured document tree representing the semantic content of an HTML document.
Uses a flat node array with index-based parent/child references for efficient traversal.
| Field | Type | Default | Description |
|---|---|---|---|
nodes |
Vec<DocumentNode> |
— | All nodes in document reading order. |
source_format |
Option<String> |
None |
The source format (always “html” for this library). |
GridCell
Section titled “GridCell”A single cell in a table grid.
| Field | Type | Default | Description |
|---|---|---|---|
content |
String |
— | The text content of the cell. |
row |
u32 |
— | 0-indexed row position. |
col |
u32 |
— | 0-indexed column position. |
row_span |
u32 |
serde(default = "default_span") |
Number of rows this cell spans (default 1). |
col_span |
u32 |
serde(default = "default_span") |
Number of columns this cell spans (default 1). |
is_header |
bool |
/* serde(default) */ |
Whether this is a header cell (<th>). |
HeaderMetadata
Section titled “HeaderMetadata”Header element metadata with hierarchy tracking.
Captures heading elements (h1-h6) with their text content, identifiers, and position in the document structure.
| Field | Type | Default | Description |
|---|---|---|---|
level |
u8 |
— | Header level: 1 (h1) through 6 (h6) |
text |
String |
— | Normalized text content of the header |
id |
Option<String> |
None |
HTML id attribute if present |
depth |
usize |
— | Document tree depth at the header element |
html_offset |
usize |
— | Byte offset in original HTML document |
Methods
Section titled “Methods”is_valid()
Section titled “is_valid()”Validate that the header level is within valid range (1-6).
Returns:
true if level is 1-6, false otherwise.
Signature:
pub fn is_valid(&self) -> boolExample:
let valid = HeaderMetadata { level: 3, text: "Title".to_string(), id: None, depth: 2, html_offset: 100,};assert!(valid.is_valid());
let invalid = HeaderMetadata { level: 7, // Invalid text: "Title".to_string(), id: None, depth: 2, html_offset: 100,};assert!(!invalid.is_valid());```rust
**Returns:** `bool`
---
#### HtmlMetadata
Comprehensive metadata extraction result from HTML document.
Contains all extracted metadata types in a single structure,suitable for serialization and transmission across language boundaries.
| Field | Type | Default | Description ||-------|------|---------|-------------|| `document` | `DocumentMetadata` | — | Document-level metadata (title, description, canonical, etc.) || `headers` | `Vec<HeaderMetadata>` | `vec!\[\]` | Extracted header elements with hierarchy || `links` | `Vec<LinkMetadata>` | `vec!\[\]` | Extracted hyperlinks with type classification || `images` | `Vec<ImageMetadata>` | `vec!\[\]` | Extracted images with source and dimensions || `structured_data` | `Vec<StructuredData>` | `vec!\[\]` | Extracted structured data blocks |
---
#### HtmlVisitor
Visitor for HTML→Markdown conversion.
Provide a visitor object whose methods customize the conversion behavior for anyHTML element type. Override only the methods you care about; unimplemented methodsdefault to `Continue` (emit the standard rendering).
Each callback returns one of:
- `Continue` (the default) — keep the standard rendering.- `Skip` — drop the element from the output entirely.- `PreserveHtml` — pass the original HTML through verbatim.- `Custom(text)` — replace the rendering with `text`.- `Error(message)` — abort conversion with `message`.
**Language idioms.** In Rust, return one of the `VisitResult` variants directly.In Python, Ruby, JavaScript/TypeScript, and other duck-typed bindings, define aplain class (no base class required) and return either a string (`"continue"`,`"skip"`, `"preserve_html"`) or a tagged map (`{"custom": "..."}`,`{"error": "..."}`) — the binding converts the return value to the corresponding`VisitResult` variant automatically.
##### Method Naming Convention
- `visit_*_start`: Called before entering an element (pre-order traversal)- `visit_*_end`: Called after exiting an element (post-order traversal)- `visit_*`: Called for specific element types (e.g., `visit_link`, `visit_image`)
##### Execution Order
For a typical element like `<div><p>text</p></div>`:
1. `visit_element_start` for `<div>`2. `visit_element_start` for `<p>`3. `visit_text` for "text"4. `visit_element_end` for `<p>`5. `visit_element_end` for `</div>`
##### Performance Notes
- `visit_text` is the most frequently called method (~100+ times per document)- Return `Continue` quickly for elements you don't need to customize- Avoid heavy computation in visitor methods; consider caching if needed
##### Methods
###### visit_text()
Visit text nodes (most frequent callback - ~100+ per document).
**Signature:**
```rustpub fn visit_text(&self, ctx: NodeContext, text: &str) -> VisitResultExample:
let result = instance.visit_text(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
text |
String |
Yes | The text |
Returns: VisitResult
visit_element_start()
Section titled “visit_element_start()”Called before entering any element.
This is the first callback invoked for every HTML element, allowing visitors to implement generic element handling before tag-specific logic.
Signature:
pub fn visit_element_start(&self, ctx: NodeContext) -> VisitResultExample:
let result = instance.visit_element_start(NodeContext::default());Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
Returns: VisitResult
visit_element_end()
Section titled “visit_element_end()”Called after exiting any element.
Receives the default markdown output that would be generated. Visitors can inspect or replace this output.
Signature:
pub fn visit_element_end(&self, ctx: NodeContext, output: &str) -> VisitResultExample:
let result = instance.visit_element_end(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
output |
String |
Yes | The output |
Returns: VisitResult
visit_link()
Section titled “visit_link()”Visit anchor links <a href="...">.
Signature:
pub fn visit_link(&self, ctx: NodeContext, href: &str, text: &str, title: Option<String>) -> VisitResultExample:
let result = instance.visit_link(NodeContext::default(), "value", "value", "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
href |
String |
Yes | The href |
text |
String |
Yes | The text |
title |
Option<String> |
No | The title |
Returns: VisitResult
visit_image()
Section titled “visit_image()”Visit images <img src="...">.
Signature:
pub fn visit_image(&self, ctx: NodeContext, src: &str, alt: &str, title: Option<String>) -> VisitResultExample:
let result = instance.visit_image(NodeContext::default(), "value", "value", "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
src |
String |
Yes | The src |
alt |
String |
Yes | The alt |
title |
Option<String> |
No | The title |
Returns: VisitResult
visit_heading()
Section titled “visit_heading()”Visit heading elements <h1> through <h6>.
Signature:
pub fn visit_heading(&self, ctx: NodeContext, level: u32, text: &str, id: Option<String>) -> VisitResultExample:
let result = instance.visit_heading(NodeContext::default(), 42, "value", "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
level |
u32 |
Yes | The level |
text |
String |
Yes | The text |
id |
Option<String> |
No | The id |
Returns: VisitResult
visit_code_block()
Section titled “visit_code_block()”Visit code blocks <pre><code>.
Signature:
pub fn visit_code_block(&self, ctx: NodeContext, lang: Option<String>, code: &str) -> VisitResultExample:
let result = instance.visit_code_block(NodeContext::default(), "value", "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
lang |
Option<String> |
No | The lang |
code |
String |
Yes | The code |
Returns: VisitResult
visit_code_inline()
Section titled “visit_code_inline()”Visit inline code <code>.
Signature:
pub fn visit_code_inline(&self, ctx: NodeContext, code: &str) -> VisitResultExample:
let result = instance.visit_code_inline(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
code |
String |
Yes | The code |
Returns: VisitResult
visit_list_item()
Section titled “visit_list_item()”Visit list items <li>.
Signature:
pub fn visit_list_item(&self, ctx: NodeContext, ordered: bool, marker: &str, text: &str) -> VisitResultExample:
let result = instance.visit_list_item(NodeContext::default(), true, "value", "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
ordered |
bool |
Yes | The ordered |
marker |
String |
Yes | The marker |
text |
String |
Yes | The text |
Returns: VisitResult
visit_list_start()
Section titled “visit_list_start()”Called before processing a list <ul> or <ol>.
Signature:
pub fn visit_list_start(&self, ctx: NodeContext, ordered: bool) -> VisitResultExample:
let result = instance.visit_list_start(NodeContext::default(), true);Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
ordered |
bool |
Yes | The ordered |
Returns: VisitResult
visit_list_end()
Section titled “visit_list_end()”Called after processing a list </ul> or </ol>.
Signature:
pub fn visit_list_end(&self, ctx: NodeContext, ordered: bool, output: &str) -> VisitResultExample:
let result = instance.visit_list_end(NodeContext::default(), true, "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
ordered |
bool |
Yes | The ordered |
output |
String |
Yes | The output |
Returns: VisitResult
visit_table_start()
Section titled “visit_table_start()”Called before processing a table <table>.
Signature:
pub fn visit_table_start(&self, ctx: NodeContext) -> VisitResultExample:
let result = instance.visit_table_start(NodeContext::default());Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
Returns: VisitResult
visit_table_row()
Section titled “visit_table_row()”Visit table rows <tr>.
Signature:
pub fn visit_table_row(&self, ctx: NodeContext, cells: Vec<String>, is_header: bool) -> VisitResultExample:
let result = instance.visit_table_row(NodeContext::default(), vec![], true);Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
cells |
Vec<String> |
Yes | The cells |
is_header |
bool |
Yes | The is header |
Returns: VisitResult
visit_table_end()
Section titled “visit_table_end()”Called after processing a table </table>.
Signature:
pub fn visit_table_end(&self, ctx: NodeContext, output: &str) -> VisitResultExample:
let result = instance.visit_table_end(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
output |
String |
Yes | The output |
Returns: VisitResult
visit_blockquote()
Section titled “visit_blockquote()”Visit blockquote elements <blockquote>.
Signature:
pub fn visit_blockquote(&self, ctx: NodeContext, content: &str, depth: usize) -> VisitResultExample:
let result = instance.visit_blockquote(NodeContext::default(), "value", 42);Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
content |
String |
Yes | The content |
depth |
usize |
Yes | The depth |
Returns: VisitResult
visit_strong()
Section titled “visit_strong()”Visit strong/bold elements <strong>, <b>.
Signature:
pub fn visit_strong(&self, ctx: NodeContext, text: &str) -> VisitResultExample:
let result = instance.visit_strong(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
text |
String |
Yes | The text |
Returns: VisitResult
visit_emphasis()
Section titled “visit_emphasis()”Visit emphasis/italic elements <em>, <i>.
Signature:
pub fn visit_emphasis(&self, ctx: NodeContext, text: &str) -> VisitResultExample:
let result = instance.visit_emphasis(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
text |
String |
Yes | The text |
Returns: VisitResult
visit_strikethrough()
Section titled “visit_strikethrough()”Visit strikethrough elements <s>, <del>, <strike>.
Signature:
pub fn visit_strikethrough(&self, ctx: NodeContext, text: &str) -> VisitResultExample:
let result = instance.visit_strikethrough(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
text |
String |
Yes | The text |
Returns: VisitResult
visit_underline()
Section titled “visit_underline()”Visit underline elements <u>, <ins>.
Signature:
pub fn visit_underline(&self, ctx: NodeContext, text: &str) -> VisitResultExample:
let result = instance.visit_underline(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
text |
String |
Yes | The text |
Returns: VisitResult
visit_subscript()
Section titled “visit_subscript()”Visit subscript elements <sub>.
Signature:
pub fn visit_subscript(&self, ctx: NodeContext, text: &str) -> VisitResultExample:
let result = instance.visit_subscript(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
text |
String |
Yes | The text |
Returns: VisitResult
visit_superscript()
Section titled “visit_superscript()”Visit superscript elements <sup>.
Signature:
pub fn visit_superscript(&self, ctx: NodeContext, text: &str) -> VisitResultExample:
let result = instance.visit_superscript(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
text |
String |
Yes | The text |
Returns: VisitResult
visit_mark()
Section titled “visit_mark()”Visit mark/highlight elements <mark>.
Signature:
pub fn visit_mark(&self, ctx: NodeContext, text: &str) -> VisitResultExample:
let result = instance.visit_mark(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
text |
String |
Yes | The text |
Returns: VisitResult
visit_line_break()
Section titled “visit_line_break()”Visit line break elements <br>.
Signature:
pub fn visit_line_break(&self, ctx: NodeContext) -> VisitResultExample:
let result = instance.visit_line_break(NodeContext::default());Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
Returns: VisitResult
visit_horizontal_rule()
Section titled “visit_horizontal_rule()”Visit horizontal rule elements <hr>.
Signature:
pub fn visit_horizontal_rule(&self, ctx: NodeContext) -> VisitResultExample:
let result = instance.visit_horizontal_rule(NodeContext::default());Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
Returns: VisitResult
visit_custom_element()
Section titled “visit_custom_element()”Visit custom elements (web components) or unknown tags.
Signature:
pub fn visit_custom_element(&self, ctx: NodeContext, tag_name: &str, html: &str) -> VisitResultExample:
let result = instance.visit_custom_element(NodeContext::default(), "value", "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
tag_name |
String |
Yes | The tag name |
html |
String |
Yes | The html |
Returns: VisitResult
visit_definition_list_start()
Section titled “visit_definition_list_start()”Visit definition list <dl>.
Signature:
pub fn visit_definition_list_start(&self, ctx: NodeContext) -> VisitResultExample:
let result = instance.visit_definition_list_start(NodeContext::default());Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
Returns: VisitResult
visit_definition_term()
Section titled “visit_definition_term()”Visit definition term <dt>.
Signature:
pub fn visit_definition_term(&self, ctx: NodeContext, text: &str) -> VisitResultExample:
let result = instance.visit_definition_term(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
text |
String |
Yes | The text |
Returns: VisitResult
visit_definition_description()
Section titled “visit_definition_description()”Visit definition description <dd>.
Signature:
pub fn visit_definition_description(&self, ctx: NodeContext, text: &str) -> VisitResultExample:
let result = instance.visit_definition_description(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
text |
String |
Yes | The text |
Returns: VisitResult
visit_definition_list_end()
Section titled “visit_definition_list_end()”Called after processing a definition list </dl>.
Signature:
pub fn visit_definition_list_end(&self, ctx: NodeContext, output: &str) -> VisitResultExample:
let result = instance.visit_definition_list_end(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
output |
String |
Yes | The output |
Returns: VisitResult
visit_form()
Section titled “visit_form()”Visit form elements <form>.
Signature:
pub fn visit_form(&self, ctx: NodeContext, action: Option<String>, method: Option<String>) -> VisitResultExample:
let result = instance.visit_form(NodeContext::default(), "value", "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
action |
Option<String> |
No | The action |
method |
Option<String> |
No | The method |
Returns: VisitResult
visit_input()
Section titled “visit_input()”Visit input elements <input>.
Signature:
pub fn visit_input(&self, ctx: NodeContext, input_type: &str, name: Option<String>, value: Option<String>) -> VisitResultExample:
let result = instance.visit_input(NodeContext::default(), "value", "value", "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
input_type |
String |
Yes | The input type |
name |
Option<String> |
No | The name |
value |
Option<String> |
No | The value |
Returns: VisitResult
visit_button()
Section titled “visit_button()”Visit button elements <button>.
Signature:
pub fn visit_button(&self, ctx: NodeContext, text: &str) -> VisitResultExample:
let result = instance.visit_button(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
text |
String |
Yes | The text |
Returns: VisitResult
visit_audio()
Section titled “visit_audio()”Visit audio elements <audio>.
Signature:
pub fn visit_audio(&self, ctx: NodeContext, src: Option<String>) -> VisitResultExample:
let result = instance.visit_audio(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
src |
Option<String> |
No | The src |
Returns: VisitResult
visit_video()
Section titled “visit_video()”Visit video elements <video>.
Signature:
pub fn visit_video(&self, ctx: NodeContext, src: Option<String>) -> VisitResultExample:
let result = instance.visit_video(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
src |
Option<String> |
No | The src |
Returns: VisitResult
visit_iframe()
Section titled “visit_iframe()”Visit iframe elements <iframe>.
Signature:
pub fn visit_iframe(&self, ctx: NodeContext, src: Option<String>) -> VisitResultExample:
let result = instance.visit_iframe(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
src |
Option<String> |
No | The src |
Returns: VisitResult
visit_details()
Section titled “visit_details()”Visit details elements <details>.
Signature:
pub fn visit_details(&self, ctx: NodeContext, open: bool) -> VisitResultExample:
let result = instance.visit_details(NodeContext::default(), true);Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
open |
bool |
Yes | The open |
Returns: VisitResult
visit_summary()
Section titled “visit_summary()”Visit summary elements <summary>.
Signature:
pub fn visit_summary(&self, ctx: NodeContext, text: &str) -> VisitResultExample:
let result = instance.visit_summary(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
text |
String |
Yes | The text |
Returns: VisitResult
visit_figure_start()
Section titled “visit_figure_start()”Visit figure elements <figure>.
Signature:
pub fn visit_figure_start(&self, ctx: NodeContext) -> VisitResultExample:
let result = instance.visit_figure_start(NodeContext::default());Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
Returns: VisitResult
visit_figcaption()
Section titled “visit_figcaption()”Visit figcaption elements <figcaption>.
Signature:
pub fn visit_figcaption(&self, ctx: NodeContext, text: &str) -> VisitResultExample:
let result = instance.visit_figcaption(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
text |
String |
Yes | The text |
Returns: VisitResult
visit_figure_end()
Section titled “visit_figure_end()”Called after processing a figure </figure>.
Signature:
pub fn visit_figure_end(&self, ctx: NodeContext, output: &str) -> VisitResultExample:
let result = instance.visit_figure_end(NodeContext::default(), "value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ctx |
NodeContext |
Yes | The node context |
output |
String |
Yes | The output |
Returns: VisitResult
ImageDimensions
Section titled “ImageDimensions”Image dimensions in pixels.
Binding-safe replacement for (u32, u32) tuples, which degrade to
Vec<Vec<String>> when sanitized for cross-language binding generation.
Used by both ImageMetadata and
InlineImage.
| Field | Type | Default | Description |
|---|---|---|---|
width |
u32 |
— | Width in pixels. |
height |
u32 |
— | Height in pixels. |
ImageMetadata
Section titled “ImageMetadata”Image metadata with source and dimensions.
Captures <img> elements and inline <svg> elements with metadata
for image analysis and optimization.
| Field | Type | Default | Description |
|---|---|---|---|
src |
String |
— | Image source (URL, data URI, or SVG content identifier) |
alt |
Option<String> |
None |
Alternative text from alt attribute (for accessibility) |
title |
Option<String> |
None |
Title attribute (often shown as tooltip) |
dimensions |
Option<ImageDimensions> |
None |
Image dimensions in pixels, if available. |
image_type |
ImageType |
— | Image type classification |
attributes |
HashMap<String, String> |
— | Additional HTML attributes |
LinkMetadata
Section titled “LinkMetadata”Hyperlink metadata with categorization and attributes.
Represents <a> elements with parsed href values, text content, and link type classification.
| Field | Type | Default | Description |
|---|---|---|---|
href |
String |
— | The href URL value |
text |
String |
— | Link text content (normalized, concatenated if mixed with elements) |
title |
Option<String> |
None |
Optional title attribute (often shown as tooltip) |
link_type |
LinkType |
— | Link type classification |
rel |
Vec<String> |
— | Rel attribute values (e.g., “nofollow”, “stylesheet”, “canonical”) |
attributes |
HashMap<String, String> |
— | Additional HTML attributes |
MetadataEntry
Section titled “MetadataEntry”A single key-value metadata entry from <head> meta tags.
Binding-safe replacement for (String, String) tuples used in
NodeContent::MetadataBlock. Tuple pairs cannot be represented
across language boundaries without lossy degradation.
| Field | Type | Default | Description |
|---|---|---|---|
key |
String |
— | Metadata key (e.g. "title", "description", "og:title"). |
value |
String |
— | Metadata value. |
NodeContext
Section titled “NodeContext”Context information passed to all visitor methods.
Provides comprehensive metadata about the current node being visited, including its type, tag name, position in the DOM tree, and parent context.
Attributes
Section titled “Attributes”Access attributes via NodeContext::attributes, which returns
&BTreeMap<String, String>. When the context was built with
NodeContext::with_lazy_attributes (the hot path inside the converter),
the map is only materialized on the first call — if the visitor never reads
attributes, the allocation is skipped.
Lifetimes
Section titled “Lifetimes”String fields use Cow<'_, str> so the converter can pass slices directly
out of the parsed DOM without allocating. Visitor implementations that need
to outlive the callback should call NodeContext::into_owned.
| Field | Type | Default | Description |
|---|---|---|---|
node_type |
NodeType |
— | Coarse-grained node type classification |
tag_name |
String |
— | Raw HTML tag name (e.g., “div”, “h1”, “custom-element”) |
depth |
usize |
— | Depth in the DOM tree (0 = root) |
index_in_parent |
usize |
— | Index among siblings (0-based) |
parent_tag |
Option<String> |
None |
Parent element’s tag name (None if root) |
is_inline |
bool |
— | Whether this element is treated as inline vs block |
Methods
Section titled “Methods”attributes()
Section titled “attributes()”Return a reference to the attribute map.
If the context was built with NodeContext::with_lazy_attributes, the
map is materialized on the first call and cached for subsequent calls.
If this method is never called, no allocation occurs for attributes.
Signature:
pub fn attributes(&self) -> HashMap<String, String>Example:
let result = instance.attributes();Returns: HashMap<String, String>
with_owned_attributes()
Section titled “with_owned_attributes()”Construct a NodeContext with an owned attribute map.
Use this when the caller already has materialized attributes.
Signature:
pub fn with_owned_attributes(node_type: NodeType, tag_name: &str, attributes: HashMap<String, String>, depth: usize, index_in_parent: usize, parent_tag: Option<String>, is_inline: bool) -> NodeContextExample:
let result = NodeContext::with_owned_attributes(NodeType::default(), "value", std::collections::HashMap::new(), 42, 42, "value", true);Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
node_type |
NodeType |
Yes | The node type |
tag_name |
String |
Yes | The tag name |
attributes |
HashMap<String, String> |
Yes | The attributes |
depth |
usize |
Yes | The depth |
index_in_parent |
usize |
Yes | The index in parent |
parent_tag |
Option<String> |
No | The parent tag |
is_inline |
bool |
Yes | The is inline |
Returns: NodeContext
into_owned()
Section titled “into_owned()”Promote any borrowed fields into owned storage so the context can outlive 'a.
Signature:
pub fn into_owned(&self) -> NodeContextExample:
let result = instance.into_owned();Returns: NodeContext
PreprocessingOptions
Section titled “PreprocessingOptions”HTML preprocessing options for document cleanup before conversion.
| Field | Type | Default | Description |
|---|---|---|---|
enabled |
bool |
true |
Enable HTML preprocessing globally |
preset |
PreprocessingPreset |
PreprocessingPreset::Standard |
Preprocessing preset level (Minimal, Standard, Aggressive) |
remove_navigation |
bool |
true |
Remove navigation elements (nav, breadcrumbs, menus, sidebars) |
remove_forms |
bool |
true |
Remove form elements (forms, inputs, buttons, etc.) |
Methods
Section titled “Methods”default()
Section titled “default()”Signature:
pub fn default() -> PreprocessingOptionsExample:
let result = PreprocessingOptions::default();Returns: PreprocessingOptions
ProcessingWarning
Section titled “ProcessingWarning”A non-fatal diagnostic produced during HTML conversion.
Warnings indicate that conversion completed but some content may have been handled differently than expected — for example, an image that could not be extracted, a truncated input, or malformed HTML that was repaired with best-effort parsing.
Conversion always succeeds (returns ConversionResult) even when warnings are
present. Callers should inspect warnings and decide how to
handle them based on their tolerance for partial results:
- Logging pipelines: emit each warning at
WARNlevel and continue. - Strict pipelines: treat any warning as a hard error by checking
result.warnings.is_empty()before using the output.
See WarningKind for the full taxonomy of warning categories.
| Field | Type | Default | Description |
|---|---|---|---|
message |
String |
— | Human-readable warning message. |
kind |
WarningKind |
— | The category of warning. |
StructuredData
Section titled “StructuredData”Structured data block (JSON-LD, Microdata, or RDFa).
Represents machine-readable structured data found in the document. JSON-LD blocks are collected as raw JSON strings for flexibility.
| Field | Type | Default | Description |
|---|---|---|---|
data_type |
StructuredDataType |
— | Type of structured data (JSON-LD, Microdata, RDFa) |
raw_json |
String |
— | Raw JSON string (for JSON-LD) or serialized representation |
schema_type |
Option<String> |
None |
Schema type if detectable (e.g., “Article”, “Event”, “Product”) |
TableData
Section titled “TableData”A top-level extracted table with both structured data and markdown representation.
| Field | Type | Default | Description |
|---|---|---|---|
grid |
TableGrid |
— | The structured table grid. |
markdown |
String |
— | The markdown rendering of this table. |
TableGrid
Section titled “TableGrid”A structured table grid with cell-level data including spans.
| Field | Type | Default | Description |
|---|---|---|---|
rows |
u32 |
— | Number of rows. |
cols |
u32 |
— | Number of columns. |
cells |
Vec<GridCell> |
vec!\[\] |
All cells in the table as a flat, sparse list. The list is ordered by (row, col) but is not a dense rows × cols matrix: cells that are covered by a spanning cell (via row_span > 1 or col_span > 1) do not appear in the list. Only the top-left “origin” cell of a span is present, with its row_span and col_span fields set accordingly. To reconstruct the full visual grid, iterate over all cells and mark the rectangular region \[row .. row+row_span, col .. col+col_span\] as occupied by that cell. Any (row, col) position that is not the origin of any cell is covered by a span from an earlier cell. The length of this vec is ≤ rows * cols. An empty table (rows == 0 || cols == 0) produces an empty vec. |
TextAnnotation
Section titled “TextAnnotation”A styling or semantic annotation that applies to a byte range within a node’s text.
Unlike DocumentNode, which captures block-level structure (headings, paragraphs, etc.),
a TextAnnotation describes inline-level markup — bold, italic, links, code spans, and
similar — that spans a contiguous run of bytes inside DocumentNode::content’s text field.
Byte offsets (start..end) are into the UTF-8 encoded text of the parent node. The range
is half-open: start is inclusive and end is exclusive.
Multiple annotations on the same node can overlap (e.g. bold-italic text), and they are stored in the order they are encountered during DOM traversal.
See AnnotationKind for the full list of supported annotation types.
| Field | Type | Default | Description |
|---|---|---|---|
start |
u32 |
— | Start byte offset (inclusive) into the parent node’s text. |
end |
u32 |
— | End byte offset (exclusive) into the parent node’s text. |
kind |
AnnotationKind |
— | The type of annotation. |
VisitorHandle
Section titled “VisitorHandle”Shareable, thread-safe handle to a user-provided HTML visitor implementation.
Pass an instance wrapped in this handle to ConversionOptions to
customise how the HTML document is traversed and converted to Markdown.
The handle may be cloned and shared across threads without additional
synchronisation on the caller’s side.
TextDirection
Section titled “TextDirection”Text directionality of document content.
Corresponds to the HTML dir attribute and bdi element directionality.
| Value | Description |
|---|---|
LeftToRight |
Left-to-right text flow (default for Latin scripts) |
RightToLeft |
Right-to-left text flow (Hebrew, Arabic, Urdu, etc.) |
Auto |
Automatic directionality detection |
LinkType
Section titled “LinkType”Link classification based on href value and document context.
Used to categorize links during extraction for filtering and analysis.
| Value | Description |
|---|---|
Anchor |
Anchor link within same document (href starts with #) |
Internal |
Internal link within same domain |
External |
External link to different domain |
Email |
Email link (mailto:) |
Phone |
Phone link (tel:) |
Other |
Other protocol or unclassifiable |
ImageType
Section titled “ImageType”Image source classification for proper handling and processing.
Determines whether an image is embedded (data URI), inline SVG, external, or relative.
| Value | Description |
|---|---|
DataUri |
Data URI embedded image (base64 or other encoding) |
InlineSvg |
Inline SVG element |
External |
External image URL (http/https) |
Relative |
Relative image path |
StructuredDataType
Section titled “StructuredDataType”Structured data format type.
Identifies the schema/format used for structured data markup.
| Value | Description |
|---|---|
JsonLd |
JSON-LD (JSON for Linking Data) script blocks |
Microdata |
HTML5 Microdata attributes (itemscope, itemtype, itemprop) |
RDFa |
RDF in Attributes (RDFa) markup |
TierStrategy
Section titled “TierStrategy”Controls which conversion tier is used.
| Value | Description |
|---|---|
Auto |
Automatically pick the best tier for the input (default). Runs the classifier against the prescan report and uses Tier-1 when eligible; falls back to Tier-2 on bail or when the classifier routes to Tier-2. |
Tier2 |
Always use the Tier-2 (tl::parse + walk) path, skipping Tier-1. |
Tier1 |
Force the Tier-1 byte scanner; if it bails, fall back to Tier-2. Testkit-only; not stable API. |
PreprocessingPreset
Section titled “PreprocessingPreset”HTML preprocessing aggressiveness level.
Controls the extent of cleanup performed before conversion. Higher levels remove more elements.
| Value | Description |
|---|---|
Minimal |
Minimal cleanup. Remove only essential noise (scripts, styles). |
Standard |
Standard cleanup. Default. Removes navigation, forms, and other auxiliary content. |
Aggressive |
Aggressive cleanup. Remove extensive non-content elements and structure. |
HeadingStyle
Section titled “HeadingStyle”Heading style options for Markdown output.
Controls how headings (h1-h6) are rendered in the output Markdown.
| Value | Description |
|---|---|
Underlined |
Underlined style (=== for h1, — for h2). |
Atx |
ATX style (# for h1, ## for h2, etc.). Default. |
AtxClosed |
ATX closed style (# title #, with closing hashes). |
ListIndentType
Section titled “ListIndentType”List indentation character type.
Controls whether list items are indented with spaces or tabs.
| Value | Description |
|---|---|
Spaces |
Use spaces for indentation. Default. Width controlled by list_indent_width. |
Tabs |
Use tabs for indentation. |
WhitespaceMode
Section titled “WhitespaceMode”Whitespace handling strategy during conversion.
Determines how sequences of whitespace characters (spaces, tabs, newlines) are processed.
| Value | Description |
|---|---|
Normalized |
Collapse multiple whitespace characters to single spaces. Default. Matches browser behavior. |
Strict |
Preserve all whitespace exactly as it appears in the HTML. |
NewlineStyle
Section titled “NewlineStyle”Line break syntax in Markdown output.
Controls how soft line breaks (from <br> or line breaks in source) are rendered.
| Value | Description |
|---|---|
Spaces |
Two trailing spaces at end of line. Default. Standard Markdown syntax. |
Backslash |
Backslash at end of line. Alternative Markdown syntax. |
CodeBlockStyle
Section titled “CodeBlockStyle”Code block fence style in Markdown output.
Determines how code blocks (<pre><code>) are rendered in Markdown.
| Value | Description |
|---|---|
Indented |
Indented code blocks (4 spaces). CommonMark standard. |
Backticks |
Fenced code blocks with triple backticks. Default (GFM). Supports language hints. |
Tildes |
Fenced code blocks with tildes (~~~). Supports language hints. |
HighlightStyle
Section titled “HighlightStyle”Highlight rendering style for <mark> elements.
Controls how highlighted text is rendered in Markdown output.
| Value | Description |
|---|---|
DoubleEqual |
Double equals syntax (==text==). Default. Pandoc-compatible. |
Html |
Preserve as HTML (==text==). Original HTML tag. |
Bold |
Render as bold (text). Uses strong emphasis. |
None |
Strip formatting, render as plain text. No markup. |
LinkStyle
Section titled “LinkStyle”Link rendering style in Markdown output.
Controls whether links and images use inline [text](url) syntax or
reference-style [text][1] syntax with definitions collected at the end.
| Value | Description |
|---|---|
Inline |
Inline links: \[text\](url). Default. |
Reference |
Reference-style links: \[text\]\[1\] with \[1\]: url at end of document. |
UrlEscapeStyle
Section titled “UrlEscapeStyle”URL encoding strategy for link and image destinations.
Controls how special characters in URL destinations are handled when they require escaping to produce valid Markdown.
The Angle variant (default) wraps the destination in angle brackets:
[text](<url with spaces>). This is the CommonMark-specified escape hatch
but breaks when the URL itself contains >.
The Percent variant percent-encodes every character that is not an RFC 3986
unreserved character or /, producing a destination safe for all Markdown
parsers: [text](url%20with%20spaces).
| Value | Description |
|---|---|
Angle |
Wrap destinations that contain spaces or newlines in angle brackets. Default. |
Percent |
Percent-encode all characters that are not RFC 3986 unreserved or /. |
OutputFormat
Section titled “OutputFormat”Output format for conversion.
Specifies the target markup language format for the conversion output.
| Value | Description |
|---|---|
Markdown |
Standard Markdown (CommonMark compatible). Default. |
Djot |
Djot lightweight markup language. |
Plain |
Plain text output (no markup, visible text only). |
NodeContent
Section titled “NodeContent”The semantic content type of a document node.
Uses internally tagged representation ("node_type": "heading") for JSON serialization.
| Value | Description |
|---|---|
Heading |
A heading element (h1-h6). — Fields: level: u8, text: String |
Paragraph |
A paragraph of text. — Fields: text: String |
List |
A list container (ordered or unordered). Children are ListItem nodes. — Fields: ordered: bool |
ListItem |
A single list item. — Fields: text: String |
Table |
A table with structured cell data. — Fields: grid: TableGrid |
Image |
An image element. — Fields: description: String, src: String, image_index: u32 |
Code |
A code block or inline code. — Fields: text: String, language: String |
Quote |
A block quote container. |
DefinitionList |
A definition list container. |
DefinitionItem |
A definition list entry with term and description. — Fields: term: String, definition: String |
RawBlock |
A raw block preserved as-is (e.g. <script>, <style> content). — Fields: format: String, content: String |
MetadataBlock |
A block of key-value metadata pairs (from <head> meta tags). — Fields: entries: Vec<MetadataEntry> |
Group |
A section grouping container (auto-generated from heading hierarchy). — Fields: label: String, heading_level: u8, heading_text: String |
AnnotationKind
Section titled “AnnotationKind”The type of an inline text annotation.
Uses internally tagged representation ("annotation_type": "bold") for JSON serialization.
| Value | Description |
|---|---|
Bold |
Bold / strong emphasis. |
Italic |
Italic / emphasis. |
Underline |
Underline. |
Strikethrough |
Strikethrough / deleted text. |
Code |
Inline code. |
Subscript |
Subscript text. |
Superscript |
Superscript text. |
Highlight |
Highlighted / marked text. |
Link |
A hyperlink sourced from an <a href="..."> element. — Fields: url: String, title: String |
WarningKind
Section titled “WarningKind”Categories of processing warnings.
| Value | Description |
|---|---|
ImageExtractionFailed |
An image could not be extracted (e.g. invalid data URI, unsupported format). |
EncodingFallback |
The input encoding was not recognized; fell back to UTF-8. |
TruncatedInput |
The input was truncated due to size limits. |
MalformedHtml |
The HTML was malformed but processing continued with best effort. |
SanitizationApplied |
Sanitization was applied to remove potentially unsafe content. |
DepthLimitExceeded |
DOM traversal was truncated because max_depth was exceeded. |
NodeType
Section titled “NodeType”Node type enumeration covering all HTML element types.
This enum categorizes all HTML elements that the converter recognizes, providing a coarse-grained classification for visitor dispatch.
| Value | Description |
|---|---|
Text |
Text node (most frequent - 100+ per document) |
Element |
Generic element node |
Heading |
Heading elements (h1-h6) |
Paragraph |
Paragraph element |
Div |
Generic div container |
Blockquote |
Blockquote element |
Pre |
Preformatted text block |
Hr |
Horizontal rule |
List |
Ordered or unordered list (ul, ol) |
ListItem |
List item (li) |
DefinitionList |
Definition list (dl) |
DefinitionTerm |
Definition term (dt) |
DefinitionDescription |
Definition description (dd) |
Table |
Table element |
TableRow |
Table row (tr) |
TableCell |
Table cell (td, th) |
TableHeader |
Table header cell (th) |
TableBody |
Table body (tbody) |
TableHead |
Table head (thead) |
TableFoot |
Table foot (tfoot) |
Link |
Anchor link (a) |
Image |
Image (img) |
Strong |
Strong/bold (strong, b) |
Em |
Emphasis/italic (em, i) |
Code |
Inline code (code) |
Strikethrough |
Strikethrough (s, del, strike) |
Underline |
Underline (u, ins) |
Subscript |
Subscript (sub) |
Superscript |
Superscript (sup) |
Mark |
Mark/highlight (mark) |
Small |
Small text (small) |
Br |
Line break (br) |
Span |
Span element |
Article |
Article element |
Section |
Section element |
Nav |
Navigation element |
Aside |
Aside element |
Header |
Header element |
Footer |
Footer element |
Main |
Main element |
Figure |
Figure element |
Figcaption |
Figure caption |
Time |
Time element |
Details |
Details element |
Summary |
Summary element |
Form |
Form element |
Input |
Input element |
Select |
Select element |
Option |
Option element |
Button |
Button element |
Textarea |
Textarea element |
Label |
Label element |
Fieldset |
Fieldset element |
Legend |
Legend element |
Audio |
Audio element |
Video |
Video element |
Picture |
Picture element |
Source |
Source element |
Iframe |
Iframe element |
Svg |
SVG element |
Canvas |
Canvas element |
Ruby |
Ruby annotation |
Rt |
Ruby text |
Rp |
Ruby parenthesis |
Abbr |
Abbreviation |
Kbd |
Keyboard input |
Samp |
Sample output |
Var |
Variable |
Cite |
Citation |
Q |
Quote |
Del |
Deleted text |
Ins |
Inserted text |
Data |
Data element |
Meter |
Meter element |
Progress |
Progress element |
Output |
Output element |
Template |
Template element |
Slot |
Slot element |
Html |
HTML root element |
Head |
Head element |
Body |
Body element |
Title |
Title element |
Meta |
Meta element |
LinkTag |
Link element (not anchor) |
Style |
Style element |
Script |
Script element |
Base |
Base element |
Custom |
Custom element (web components) or unknown tag |
VisitResult
Section titled “VisitResult”Result of a visitor callback.
Allows visitors to control the conversion flow by either proceeding with default behavior, providing custom output, skipping elements, preserving HTML, or signaling errors.
| Value | Description |
|---|---|
Continue |
Continue with default conversion behavior |
Custom |
Replace default output with custom markdown The visitor takes full responsibility for the markdown output of this node and its children. — Fields: 0: String |
Skip |
Skip this element entirely (don’t output anything) The element and all its children are ignored in the output. |
PreserveHtml |
Preserve original HTML (don’t convert to markdown) The element’s raw HTML is included verbatim in the output. |
Error |
Stop conversion with an error The conversion process halts and returns this error message. — Fields: 0: String |
Errors
Section titled “Errors”ConversionError
Section titled “ConversionError”Errors that can occur during HTML to Markdown conversion.
| Variant | Description |
|---|---|
ParseError |
HTML parsing error |
SanitizationError |
HTML sanitization error |
ConfigError |
Invalid configuration |
IoError |
I/O error — stores the error message string so the variant is FFI-safe. Use ConversionError::from(io_error) to convert from std::io::Error. |
Panic |
Internal error caught during conversion |
InvalidInput |
Invalid input data |
Other |
Generic conversion error |