I have a Docx4j Word Template using bookmarks to populate text when generating the document.
One of the bookmark fields is loaded with text that has new lines /r/n in the string which is supposed to print as new lines.
example:
<w:bookmarkStart w:name="distributionText_1" w:id="31" />
<w:r>
<w:t>cc: This is line 1 This is line 2 with more This is line 3</w:t>
</w:r>
<w:bookmarkEnd w:id="31" />
I can see the /r/n in the string (debug) but ...