Support for list-style-type trad-chinese-informal style to word

Do you have support for html list-style-type: trad-chinese-informal to word?

My code (NET c#)
.cs file
string fileName = “index.html”;
string contentRootPath = _hostingEnvironment.ContentRootPath;
Document doc = new Document(Path.Combine(contentRootPath, fileName));
OoxmlSaveOptions options = new OoxmlSaveOptions(SaveFormat.Docx);
doc.Save(Path.Combine(contentRootPath, “index.docx”), options);

index.html file

<html>
	<head>
	</head>
	<dody>
		<ol style="list-style-type: trad-chinese-informal;">
		<li>Hello, World!</li>
		<li>jjjj</li>
		</ol>
	</dody>
</html>

now index.docx file

  1. Hello, World!
  2. jjjj

But I need this index.docx
一、 Hello, World!
二、 jjjj

@junyu

Unfortunately, Aspose.Words does not support the requested feature at the moment. However, we have logged this feature request as WORDSNET-20105 in our issue tracking system. You will be notified via this forum thread once this feature is available.

We apologize for your inconvenience.