blob: 80d304b4bd0773cc30e91d28b82d534500edaf28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fo="http://www.w3.org/1999/XSL/Format"
version="1.1">
<!-- $Id$ -->
<xsl:template match= "xsl:attribute-set[@name='emphasis-inline']" priority="3">
<xsl:call-template name="before-desc">
<xsl:with-param name="fo">fo:inline</xsl:with-param>
<xsl:with-param name="docutils">emphasis</xsl:with-param>
</xsl:call-template>
<block>
Formats the emphasis element.
</block>
</xsl:template>
<xsl:template match= "xsl:attribute-set[@name='strong-inline']" priority="3">
<xsl:call-template name="before-desc">
<xsl:with-param name="fo">fo:inline</xsl:with-param>
<xsl:with-param name="docutils">strong</xsl:with-param>
</xsl:call-template>
<block>
Formats the strong element.
</block>
</xsl:template>
<xsl:template match= "xsl:attribute-set[@name='basic-link-inline']" priority="3">
<xsl:call-template name="before-desc">
<xsl:with-param name="fo">fo:inline</xsl:with-param>
<xsl:with-param name="docutils">basic_link</xsl:with-param>
</xsl:call-template>
<block>
Formats the basic_link element.
</block>
</xsl:template>
<xsl:template match= "xsl:attribute-set[@name='literal-inline']" priority="3">
<xsl:call-template name="before-desc">
<xsl:with-param name="fo">fo:inline</xsl:with-param>
<xsl:with-param name="docutils">literal</xsl:with-param>
</xsl:call-template>
<block>
Formats the literal element.
</block>
</xsl:template>
<xsl:template match= "xsl:attribute-set[@name='title-reference-inline']" priority="3">
<xsl:call-template name="before-desc">
<xsl:with-param name="fo">fo:inline</xsl:with-param>
<xsl:with-param name="docutils">title-reference</xsl:with-param>
</xsl:call-template>
<block>
Formats the title_reference element.
</block>
</xsl:template>
</xsl:stylesheet>
|