Hi,
I am having an issue with Aspose.Pdf for .NET. Consider the following code:
Aspose.Pdf.Text t = new Aspose.Pdf.Text("
Here is some text.
Here is the next line of text.
t.IsHtmlTagSupported = true;
The pdf rendered in this case is:
Here is some text.Here is the next line of text.
If I change it to
Aspose.Pdf.Text t = new Aspose.Pdf.Text("
Here is some text#$NLHere is the next line of text.
");t.IsHtmlTagSupported = true;
I get:
Here is some text.#$NLHere is the next line of text.
I am expecting:
Here is some text.
Here is the next line of text.
I am using Aspose.Pdf 4.1.0.0
Please help.