Hi ,
When i am using ASPOSE.HTML to convert HTML files to PDF the files get converted properly but with the url getting printed along with the hyperlink and brackets.
Screenshot:
image.png (20.7 KB)
Code snippet:
#region Aspose Code
Aspose.Html.HTMLDocument htmlDocument = new Aspose.Html.HTMLDocument(htmlfile);
Aspose.Html.Saving.PdfSaveOptions options = new Aspose.Html.Saving.PdfSaveOptions { JpegQuality = 100 };
OutputPdf = Path.Combine(txtOutpath.Text.Trim(), Path.ChangeExtension(finfo.Name, ".pdf"));
Converter.ConvertHTML(htmlDocument, options, OutputPdf);
#endregion
Please suggest some option or a way to remove this.