- What counts as whitespace?
- ASCII space, tab, newline, carriage return, form feed, vertical tab, and zero-width / non-breaking space. The normalizer can collapse, trim, or convert any of these.
- Default settings do what?
- Collapse consecutive spaces/tabs to a single space, trim trailing whitespace from each line, drop runs of blank lines to a single blank line. Most common 'clean up pasted text' rules.
- Does it touch indentation?
- Optional — toggle 'preserve indentation' to keep leading whitespace untouched (for code). Default mode collapses every sequence, which breaks indentation.
- What about Unicode spaces?
- The tool detects non-breaking space (U+00A0), narrow no-break space (U+202F), and zero-width space (U+200B) and normalizes or removes them per your settings.