HtmlToMarkdown. WarningKind
(html_to_markdown v3.6.0-rc.16)
Copy Markdown
Categories of processing warnings.
Summary
Functions
DOM traversal was truncated because max_depth was exceeded.
The input encoding was not recognized; fell back to UTF-8.
An image could not be extracted (e.g. invalid data URI, unsupported format).
The HTML was malformed but processing continued with best effort.
Sanitization was applied to remove potentially unsafe content.
The input was truncated due to size limits.
Types
Functions
@spec depth_limit_exceeded() :: t()
DOM traversal was truncated because max_depth was exceeded.
@spec encoding_fallback() :: t()
The input encoding was not recognized; fell back to UTF-8.
@spec image_extraction_failed() :: t()
An image could not be extracted (e.g. invalid data URI, unsupported format).
@spec malformed_html() :: t()
The HTML was malformed but processing continued with best effort.
@spec sanitization_applied() :: t()
Sanitization was applied to remove potentially unsafe content.
@spec truncated_input() :: t()
The input was truncated due to size limits.