Valid listitems.

[SVN r63145]
This commit is contained in:
Daniel James 2010-06-20 17:57:28 +00:00
parent 0597d29b9c
commit ef13ddd9dd
2 changed files with 3 additions and 3 deletions

View File

@ -71,7 +71,7 @@ namespace example
* Embedded docbook list: * Embedded docbook list:
* *
* \xmlonly * \xmlonly
* <orderedlist><listitem>1</listitem><listitem>2</listitem></orderedlist> * <orderedlist><listitem><simpara>1</simpara></listitem><listitem><simpara>2</simpara></listitem></orderedlist>
* \endxmlonly * \endxmlonly
* *
* \a Special \b Bold \c Typewriter \e Italics \em emphasis \p parameter * \a Special \b Bold \c Typewriter \e Italics \em emphasis \p parameter

View File

@ -98,14 +98,14 @@
<itemizedlist> <itemizedlist>
<xsl:for-each select="concept"> <xsl:for-each select="concept">
<listitem> <listitem><simpara>
<xsl:call-template name="internal-link"> <xsl:call-template name="internal-link">
<xsl:with-param name="to"> <xsl:with-param name="to">
<xsl:call-template name="generate.id"/> <xsl:call-template name="generate.id"/>
</xsl:with-param> </xsl:with-param>
<xsl:with-param name="text" select="@name"/> <xsl:with-param name="text" select="@name"/>
</xsl:call-template> </xsl:call-template>
</listitem> </simpara></listitem>
</xsl:for-each> </xsl:for-each>
</itemizedlist> </itemizedlist>
</section> </section>