`paragraph.createTextRun().break();` is adding a bunch of spaces on the line of the break. _I think_ it might be because a linebreak is added to the `document.xml` like this: ```xml <w:br> </w:br> ``` and should be like this: ```xml <w:br></w:br> ``` or ```xml <w:br /> ```