I have an XML file that I'm trying to update. The section in question is text intended for consumption by humans. In order to improve readability it needs to have paragraphs and, for that, carriage returns / line feeeds.
In the original file, a carriage return / line feed is represented by the following characters - "

". These characters seem to be required by this XML file's application in order to display the content accurately.
Without the right characters in the XML, the content paragraphs just all run on and create a big block of text that isn't easy to consume.
I'm working with Microsoft Word VBA. I'm puling the content for the XML file from a Content Control (which I think is irrelevant because it's simply returning a string).
Despite the content in the content control having paragraphs, the content in the application has no CR/LF in it.
To date, I've tried simply adding the characters (ie "

") into the string, but that didn't work. I've tried to add chr(10) and chr(13) directly into string, and a host of other options, but to no avail.
Thank you in advance for any support, tips or ideas that you can provide.