We have a .NET application that saves messages in axml format. Our task is to convert these messages into html. After some research, I came across a 3rd party library called "HtmlFromXamlConverter" that does this job, but with one issue: when the axml contains multiple line breaks, it converts them into something like this:
<P ><SPAN STYLE="text-decoration:underline;" /> </P>
<P ><SPAN STYLE="text-decoration:underline;" /> </P>
<P ><SPAN STYLE="text-decoration:underline;" /> </P>
This causes only one line break to appear instead of multiple ones. Since inserting " " as a value is not an option due to the underline style, my question is: is there a way to configure empty P tags <p></p>
to display as line breaks?