Let me describe this scenario and ask if you think this is an issue with the library, or I am doing something wrong.
When I tried using "list-style-type:lower-roman" in order to get the roman numbering for the 2nd level listings, they stopped restarting numbering after each new 1st level list.
So if I imported this, the numbers of the 2nd level list in the 1st and 2nd listings start from 1.
When I tried using "list-style-type:lower-roman" in order to get the roman numbering for the 2nd level listings, they stopped restarting numbering after each new 1st level list.
So if I imported this, the numbers of the 2nd level list in the 1st and 2nd listings start from 1.
<!doctype html>
<html><head><title>a</title></head><body>
<ol>
<li>List item
<li>List item
<ol>
<li>Nested item</li>
<li>Nested item</li>
</ol>
</li>
</ol>
<ol>
<li>List item
<li>List item
<ol>
<li>Nested item</li>
<li>Nested item</li>
</ol>
</li>
</ol>
</body></html>
I see the following in the imported document:1. List item
2. List item
1. Nested item
2. Nested item
1. List item
2. List item
1. Nested item
2. Nested item
But this HTML results in a different import:<!doctype html>
<html><head><title>a</title></head><body>
<ol>
<li>List item
<li>List item
<ol style="list-style-type:lower-roman">
<li>Nested item</li>
<li>Nested item</li>
</ol>
</li>
</ol>
<ol>
<li>List item
<li>List item
<ol style="list-style-type:lower-roman">
<li>Nested item</li>
<li>Nested item</li>
</ol>
</li>
</ol>
</body></html>
This is what I see in the document:1. List item
2. List item
i. Nested item
ii. Nested item
1. List item
2. List item
iii. Nested item
iv. Nested item
Should the last 2nd level list start from i, not from iii?