Wrong indentation when converting markdown to PDF

When converting a markdown file to PDF using the Aspose.HTML product (for C#), the indentation of bullet points does not entirely match the expected outcome.

For the expected and the current behaviour please refer to this image:
Aspose_HTML_Bug_Markdown.png (12.0 KB)

Content of the test.md file:

### - 1
- 1.1
- 1.2
	- 1.2.1
	- 1.2.2

### - 2
- 2.1
- 2.2

Code used to convert the files (- based on your example Convert Markdown to PDF – C# Examples and Online Converter):

using Aspose.Html.Converters;
using Aspose.Html.Saving;

// [...]

// Set the Aspose html licence

var fileName = "test.md"
using (var document = Converter.ConvertMarkdown(fileName))
{
    var options = new PdfSaveOptions();
    Converter.ConvertHTML(document, options, "test.pdf");
}

// [...]

@M.Heinz

Would you please also share the output PDF file that you have generated in your environment?

@asad.ali Sorry for the late reply; I must have missed the email notification.

The following zip file contains the md file as described above as well as the corresponding pdf file.
MarkdownTest.zip (20.9 KB)

@M.Heinz

We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): HTMLNET-5528

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

The issues you have found earlier (filed as HTMLNET-5528) have been fixed in this update. This message was posted using Bugs notification tool by avpavlysh

Looks good to me. Thanks.