* unittest for mixture of different types of lists
[rss2maildir.git] / tests / html / mixednestedlists-wellformed.html
diff --git a/tests/html/mixednestedlists-wellformed.html b/tests/html/mixednestedlists-wellformed.html
new file mode 100644 (file)
index 0000000..d862fc5
--- /dev/null
@@ -0,0 +1,22 @@
+<ul>
+    <li>Fun is on the way
+        <ol>
+            <li>Honest</li>
+            <li>It really is
+                <ul>
+                    <li>And it's fun</li>
+                    <li>We should have at least one silly long line to check that wrapping works like we expect otherwise what's the point</li>
+                </ul>
+            </li>
+        </ol>
+        <dl>
+            <dt>What is HTML2Text?</dt>
+            <dd>
+                <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>
+                <p>Hopefully one day it'll be good enough that other people will want to use it!</p>
+            </dd>
+            <dt>Who wrote it?</dt>
+            <dd>HTML2Text was written by Brett Parker.</dd>
+        </dl>
+    </li>
+</ul>