https://bz.apache.org/bugzilla/show_bug.cgi?id=66260

--- Comment #2 from Axel Richter <axel.richter.pri...@web.de> ---
Sorry. That SO comment was misleading. There really may be multiple `w:t`
elements in one `w:r`. See example in 

ECMA-376-1:2016
Office Open XML File Formats — Fundamentals
and Markup Language Reference
October 2016

page 333:

... However, if a text wrapping break character (a
typical line break) were inserted after the word is, as follows:

<w:r>
 <w:t>This is</w:t>
 <w:br/>
 <w:t xml:space="preserve"> a simple sentence.</w:t>
</w:r>

But I've never seen Word itself doing as such. It always uses multiple runs
then:

<w:r>
 <w:t>This is</w:t>
</w:r>
<w:r>
 <w:br/>
 <w:t xml:space="preserve"> a simple sentence.</w:t>
</w:r>

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org

Reply via email to