Fixed
DOCX Extraction
- DOCX list items missing whitespace between text runs: Fixed separate text runs (
<w:r>elements) within the same paragraph being concatenated without spaces, causing words to merge together. Root cause: the XML parser usedtrim_text(true)which stripped whitespace from<w:t>text elements. Vendored thedocx-liteparser into kreuzberg and fixed the parser to usetrim_text(false), preserving the original whitespace from the DOCX XML. (#359)