ietf-tools / xml2rfc

Generate RFCs and IETF drafts from document source in XML according to the IETF xml2rfc v2 and v3 vocabularies
https://ietf-tools.github.io/xml2rfc/
BSD 3-Clause "New" or "Revised" License
65 stars 38 forks source link

Missing style in <ul> #1138

Open kesara opened 1 month ago

kesara commented 1 month ago

Describe the issue

Similar to #1135, same bug is present in ul. Example:

      <ul>
        <li>First Item</li>
        <li>
          <ul>
            <li>Second Item: Inner A</li>
            <li>Second Item: Inner B</li>
          </ul>
        </li>
        <li>Third Item</li>
      </ul>

Text output:

   *  First Item

      -  Second Item: Inner A

      -  Second Item: Inner B

   *  Third Item

Code of Conduct