This page was created to test browser compatibility of improperly nested ul and ol tags, i.e. where the nesting happens without a containing li tag. I believe that every browser displays this in exactly the same way by default, that it therefore represents a de-facto standard, and that Markdown converters like Turndown should not alter the semantic meaning conveyed by all browsers since the beginning of time by separating an obviously nested list into two separate lists.
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<ul>
<li>Item 3.1</li>
<li>Item 3.2</li>
</ul>
</ul>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<ol>
<li>Item 3.1</li>
<li>Item 3.2</li>
</ol>
</ol>
* Item 1
* Item 2
* Item 3
* Item 3.1
* Item 3.2
1. Item 1
2. Item 2
3. Item 3
1. Item 3.1
2. Item 3.2