Fix a regression in [r8062] (extra space with French smartquotes again).
[docutils.git] / sandbox / docbook / xsl / field_list.xsl
blob7f515df854b6388486cead81a6b8e143093fe6ea
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">
7 <xsl:template match="field_list|option_list">
8 <d:variablelist>
9 <xsl:apply-templates/>
10 </d:variablelist>
11 </xsl:template>
13 <xsl:template match="field|option_list_item">
14 <d:varlistentry>
15 <xsl:apply-templates/>
16 </d:varlistentry>
17 </xsl:template>
19 <xsl:template match="option_group|option">
20 <xsl:apply-templates/>
21 </xsl:template>
23 <xsl:template match="option_string">
24 <xsl:apply-templates/>
25 </xsl:template>
27 <xsl:template match="option_argument">
28 <xsl:value-of select="@delimiter"/>
29 <xsl:apply-templates/>
30 </xsl:template>
32 <xsl:template match="field_name|option">
33 <d:term>
34 <xsl:apply-templates/>
35 </d:term>
36 </xsl:template>
38 <xsl:template match="field_body|option_list_item/description">
39 <d:listitem>
40 <xsl:apply-templates/>
41 </d:listitem>
42 </xsl:template>
44 <xsl:template match="field_body/paragraph">
45 <d:para>
46 <xsl:apply-templates/>
47 </d:para>
48 </xsl:template>
52 </xsl:stylesheet>