-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
Description
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.