Describe the bug
If there is a ol nested in a ul's li, the first marker is incorrectly swapped.
Repro
<ul>
<li>
<h3>Text1</h3>
<ol>
<li>Text2</li>
</ol>
<ul>
<li>Text3</li>
</ul>
<ol start="2">
<li>Text4</li>
</ol>
<ul>
<li>Text5</li>
<li>Text6</li>
</ul>
<ol start="3">
<li>Text7</li>
</ol>
</li>
</ul>
Should be:

Currently renders as:

Also, are nested lists of level 3+ not supported? Converting the same document with Pandoc handles them correctly:

Describe the bug
If there is a
olnested in aul'sli, the first marker is incorrectly swapped.Repro
Should be:

Currently renders as:

Also, are nested lists of level 3+ not supported? Converting the same document with Pandoc handles them correctly:
