I am trying to add a html formatted text to a Open xml Text. How can I apply the formatting already present in the text?
I apply the text as following:
TextElement.Text = formattedString;
where FormattedString contains the following:
<p>test<br/>test2<ul><li>item1</li><li>item2<li2></p>
At the moment it simply inserts the text as it is with the tags into the word document. How can I tell Open XML SDK to add the string with the right format?
