I'm writing a library which generates Word documents based on a template. Some text needs to be replaced with another text. Everything seems to be working, there is a TextReplacer class which may perform replacements.
The things become worse when I need to replace a single-line part of text with multiline text. Line breaks such as \n or \r\n are just pasted as text. I understand that this is expected as multiple lines of text must become separate tags (<w.p>..</w.p>, I suppose) in document.xml.
I think that simple solution is to replace all \n or \r\n in document with break tags before saving. I can do this with string.Replace(), but I don't think it is the best way to go. I want to use some built-in OpenXMLPowerTools library features, if it is possible. Or maybe other (free) OpenXML libraries.
