equal
deleted
inserted
replaced
94 <xsl:template match="formalpara/list"> |
94 <xsl:template match="formalpara/list"> |
95 <list-block provisional-distance-between-starts="5mm"> |
95 <list-block provisional-distance-between-starts="5mm"> |
96 <xsl:apply-templates/> |
96 <xsl:apply-templates/> |
97 </list-block> |
97 </list-block> |
98 </xsl:template> |
98 </xsl:template> |
|
99 <xsl:template match="para/list"> |
|
100 <list-block provisional-distance-between-starts="5mm"> |
|
101 <xsl:apply-templates/> |
|
102 </list-block> |
|
103 </xsl:template> |
99 <xsl:template match="shortlist"> |
104 <xsl:template match="shortlist"> |
100 <block margin-left="24pt"><xsl:apply-templates mode="short"/></block> |
105 <block margin-left="24pt"><xsl:apply-templates mode="short"/></block> |
101 </xsl:template> |
106 </xsl:template> |
102 <xsl:template match="formalpara/shortlist"> |
107 <xsl:template match="formalpara/shortlist"> |
103 <block margin-left="24pt">- <xsl:apply-templates mode="short"/></block> |
108 <block margin-left="24pt">- <xsl:apply-templates mode="short"/></block> |
148 |
153 |
149 <xsl:template match="superscript"> |
154 <xsl:template match="superscript"> |
150 <inline vertical-align="super" font-size="60%"><xsl:apply-templates/></inline> |
155 <inline vertical-align="super" font-size="60%"><xsl:apply-templates/></inline> |
151 </xsl:template> |
156 </xsl:template> |
152 |
157 |
|
158 <xsl:template match="link"> |
|
159 <xsl:variable name="linkend" select="@linkend"/> |
|
160 <basic-link internal-destination="{$linkend}"> |
|
161 <xsl:apply-templates/> |
|
162 </basic-link> |
|
163 </xsl:template> |
|
164 |
153 </xsl:stylesheet> |
165 </xsl:stylesheet> |
154 |
166 |
155 <!-- Keep this comment at the end of the file |
167 <!-- Keep this comment at the end of the file |
156 Local variables: |
168 Local variables: |
157 mode: xml |
169 mode: xml |