* Serious reworking of HTML2Text to handle nested lists reasonably
[rss2maildir.git] / tests / html / nestedlists-wellformed.html
diff --git a/tests/html/nestedlists-wellformed.html b/tests/html/nestedlists-wellformed.html
new file mode 100644 (file)
index 0000000..2efc06b
--- /dev/null
@@ -0,0 +1,16 @@
+<dl>
+    <dt>When the clock strikes one</dt>
+    <dd>
+        <ul>
+            <li>bullet point 1</li>
+            <li>bullet point 2</li>
+        </ul>
+    </dd>
+    <dt>When the clock strikes two</dt>
+    <dd>
+        <ol>
+            <li>first item</li>
+            <li>second item</li>
+        </ol>
+    </dd>
+</dl>