packages feed

pandoc-3.10: test/command/11006.md

```
% pandoc -f html -t asciidoc
<ul>
  <li>
    <p>Paragraph one</p>
    <p>Paragraph two to force a list continuation</p>
    <ul>
      <li>First nested</li>
      <li>Second nested</li>
    </ul>
  </li>
</ul>

<p>How about ordered lists?</p>

<ol>
  <li>
    <p>Paragraph one</p>
    <p>Paragraph two to force a list continuation</p>
    <ol><li>Nested item</li></ol>
  </li>
</ol>

<p>With non-default attributes:</p>

<ol>
  <li>
    <p>Paragraph one</p>
    <p>Paragraph two to force a list continuation</p>
    <ol start=5><li>Nested item</li></ol>
  </li>
</ol>
^D
* Paragraph one
+
Paragraph two to force a list continuation

** First nested
** Second nested

How about ordered lists?

. Paragraph one
+
Paragraph two to force a list continuation

.. Nested item

With non-default attributes:

. Paragraph one
+
Paragraph two to force a list continuation
[start=5]
.. Nested item
```