Skip to content

List parsing #57

@msmid

Description

@msmid

List parsing is working but limited. It doesnt respect one blank line before list and every list item is wrapped in paragraph element.

In reality, you dont have to put blank line between para and list, so

para
- list

is goning to be

 <para>para</para>
 <itemizedlist>
     <listitem>
        <para>list</para>
     </listitem>
  </itemizedlist>

which should be correctly this

<para>para
- list</para>

Also items without blank lines are not wrapped in para element, but items with lines are.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions