Fix a regression in [r8062] (extra space with French smartquotes again).
[docutils.git] / sandbox / docbook / xsl / bullet_list.xsl
blobc0465539e8fbae8f1e811b6d0797ac644c459a02
1 <xsl:stylesheet
2 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3 xmlns:d="http://docbook.org/ns/docbook"
4 version="1.1">
6 <xsl:template match="bullet_list">
7 <d:itemizedlist>
8 <xsl:apply-templates/>
9 </d:itemizedlist>
10 </xsl:template>
12 <xsl:template match="enumerated_list">
13 <d:orderedlist numeration="{@enumtype}">
14 <xsl:apply-templates/>
15 </d:orderedlist>
16 </xsl:template>
18 <xsl:template match="list_item">
19 <d:listitem>
20 <xsl:apply-templates/>
21 </d:listitem>
22 </xsl:template>
25 </xsl:stylesheet>