* Serious reworking of HTML2Text to handle nested lists reasonably
[rss2maildir.git] / tests / html / nestedlists-wellformed.html
1 <dl>
2     <dt>When the clock strikes one</dt>
3     <dd>
4         <ul>
5             <li>bullet point 1</li>
6             <li>bullet point 2</li>
7         </ul>
8     </dd>
9     <dt>When the clock strikes two</dt>
10     <dd>
11         <ol>
12             <li>first item</li>
13             <li>second item</li>
14         </ol>
15     </dd>
16 </dl>