[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: makeinfo --docbook: itemize
From: |
Nikos Mavrogiannopoulos |
Subject: |
Re: makeinfo --docbook: itemize |
Date: |
Tue, 14 Feb 2012 23:48:31 +0100 |
User-agent: |
Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.24) Gecko/20111114 Icedove/3.1.16 |
On 02/13/2012 04:22 PM, Nikos Mavrogiannopoulos wrote:
> Hello,
> I tried the cvs version of makeinfo and it seems the docbook output
> with images is fixed. What I notice on the output of an itemized list is
> the fact that there are two bullets for each item. I don't know if
> dbtoepub adds an additional bullet, but I see that makeinfo --docbook
> adds per item list:
>
> </listitem><listitem><para>• Item3
> </para>
> which looks to have a superfluous bullet (but I'm not a docbook expert).
To continue on that it seems the xml output of the itemized list could
be improved. The previous test.texi generates:
<itemizedlist>
<listitem><para>• Item1
</para>
</listitem><listitem><para>• Item2
</para>
</listitem><listitem><para>• Item3
</para>
</listitem></itemizedlist>
but this would actually be expected:
<itemizedlist>
<listitem>Item1</para></listitem>
<listitem>Item2</para></listitem>
<listitem>Item3</listitem>
</itemizedlist>
i.e. the <para> is not there.
regards,
Nikos