What gets removed from the HTML?
All HTML tags, scripts, style blocks, comments, and inline styles are removed. Only visible text content is preserved.
Is whitespace and formatting preserved?
We preserve paragraph breaks and basic structure. Multiple spaces are collapsed and excessive newlines are normalized.
Can it handle malformed HTML?
Yes, we use a forgiving HTML parser that handles unclosed tags, invalid nesting, and other common issues.
What about tables and lists?
Table cells are separated by tabs, rows by newlines. List items are extracted with each on its own line.
Is there a size limit?
HTML input up to 5MB is supported. For very large documents, consider chunking.
Does it handle special characters?
HTML entities like &, , and © are decoded to their text equivalents.