Issue with table as list item

Hi,
I have an issue with table as list item in word document. I use InsertHtml to build word document. Bullet or number is not shown up in both word and pdf documents, when table is there in the list as list item. Please check the content in attached document to know the problem.
Please let me know the solution for this.
Thanks,
Sowjanya R

Hello,

Thanks for the inquiry. I cannot reproduce the problem on my side using the latest version of Aspose.Words. It seems you are using an old version of Aspose.Words. The latest version of Aspose.Words is 10.4.0; you can download this version from here:
https://releases.aspose.com/words/net/

I have used following code for testing .Output documents are also attached.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
string html = "<ol><li><table border='1' width='100%' cellspacing='0' cellpadding='0'><tr><td width='50%'/><td width='50%'/></tr><tr><td width='50%'/><td width='50%'/></tr></table></li><li>List item 2 </li><li> List item 3 </li></ol>";
builder.InsertHtml(html)

Best Regards,

Yes, I am using old version of Aspose(9.5). Thanks for your response.