* unittest for mixture of different types of lists
[rss2maildir.git] / tests / html / mixednestedlists-wellformed.html
1 <ul>
2     <li>Fun is on the way
3         <ol>
4             <li>Honest</li>
5             <li>It really is
6                 <ul>
7                     <li>And it's fun</li>
8                     <li>We should have at least one silly long line to check that wrapping works like we expect otherwise what's the point</li>
9                 </ul>
10             </li>
11         </ol>
12         <dl>
13             <dt>What is HTML2Text?</dt>
14             <dd>
15                 <p>HTML2Text is a funky bit of python that translates HTML fragments in to plain text in a human readable format. It's primary use was for generating the plain text body of email messages generated from rssfeeds as part of rss2maildir.</p>
16                 <p>Hopefully one day it'll be good enough that other people will want to use it!</p>
17             </dd>
18             <dt>Who wrote it?</dt>
19             <dd>HTML2Text was written by Brett Parker.</dd>
20         </dl>
21     </li>
22 </ul>