OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: How to generate <li><a href="xx">..</a></li>?


Hi,

I'm using docbook 4.5 xhtml stylesheet xsl to generate html files. I
want to have a list of links, which should be:

-------------------
<li><a href="xxx">...</a></li>
<li><a href="xxx">...</a></li>
<li><a href="xxx">...</a></li>
-------------------

So, I use
============
<listitem><para><ulink url="xxx">...</ulink></para></listitem>
<listitem><para><ulink url="xxx">...</ulink></para></listitem>
<listitem><para><ulink url="xxx">...</ulink></para></listitem>
============

However, it generates following result
============
<li><p><a href="xxx">...</a></p></li>
<li><p><a href="xxx">...</a></p></li>
<li><p><a href="xxx">...</a></p></li>
============

I do not want <p> there. How can I generate the list of links without <p>?

-- 
Regards

Tao Wang


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]