-
Notifications
You must be signed in to change notification settings - Fork 29
/
content.xslt
188 lines (150 loc) · 8.02 KB
/
content.xslt
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) Igor Sysoev
Copyright (C) Nginx, Inc.
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="section[@id and @name]">
<a name="{@id}"/> <center><h4> <xsl:value-of select="@name"/> </h4></center>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="section/section[@id and @name]">
<a name="{@id}"/> <center><h4> <xsl:value-of select="@name"/> </h4></center>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="section[@id and not(@name)]">
<a name="{@id}"/>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="section[not(@id) and @name]">
<center><h4> <xsl:value-of select="@name"/> </h4></center>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="section/section[not(@id) and @name]">
<center><h4> <xsl:value-of select="@name"/> </h4></center>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="para[@id]">
<a name="{@id}"/>
<p> <xsl:apply-templates/> </p>
</xsl:template>
<xsl:template match="para"> <p> <xsl:apply-templates/> </p> </xsl:template>
<xsl:template match="para[@align]"> <p align="{@align}"> <xsl:apply-templates/> </p> </xsl:template>
<xsl:template match="initial"> <span class="initial"><b> <xsl:apply-templates/> </b></span> </xsl:template>
<xsl:template match="programlisting"> <blockquote class="example"><pre> <xsl:apply-templates/> </pre></blockquote> </xsl:template>
<xsl:template match="para/programlisting">
<xsl:text disable-output-escaping="yes"></p> </xsl:text>
<blockquote class="example"><pre> <xsl:apply-templates/> </pre></blockquote>
<xsl:text disable-output-escaping="yes"><p> </xsl:text>
</xsl:template>
<xsl:template match="note"> <blockquote class="note"> <xsl:apply-templates/> </blockquote> </xsl:template>
<xsl:template match="para/note">
<xsl:text disable-output-escaping="yes"></p> </xsl:text>
<blockquote class="note"> <xsl:apply-templates/> </blockquote>
<xsl:text disable-output-escaping="yes"><p> </xsl:text>
</xsl:template>
<xsl:template match="list[@type='bullet']">
<xsl:choose><xsl:when test="@compact = 'yes'">
<ul class="compact"> <xsl:apply-templates/> </ul>
</xsl:when><xsl:otherwise>
<ul> <xsl:apply-templates/> </ul>
</xsl:otherwise></xsl:choose>
</xsl:template>
<xsl:template match="para/list[@type='bullet']">
<xsl:text disable-output-escaping="yes"></p> </xsl:text>
<xsl:choose><xsl:when test="@compact = 'yes'">
<ul class="compact"> <xsl:apply-templates/> </ul>
</xsl:when><xsl:otherwise>
<ul> <xsl:apply-templates/> </ul>
</xsl:otherwise></xsl:choose>
<xsl:text disable-output-escaping="yes"><p> </xsl:text>
</xsl:template>
<xsl:template match="list[@type='enum']">
<xsl:choose><xsl:when test="@compact = 'yes'">
<ol class="compact"> <xsl:apply-templates/> </ol>
</xsl:when><xsl:otherwise>
<ol> <xsl:apply-templates/> </ol>
</xsl:otherwise></xsl:choose>
</xsl:template>
<xsl:template match="para/list[@type='enum']">
<xsl:text disable-output-escaping="yes"></p> </xsl:text>
<xsl:choose><xsl:when test="@compact = 'yes'">
<ol class="compact"> <xsl:apply-templates/> </ol>
</xsl:when><xsl:otherwise>
<ol> <xsl:apply-templates/> </ol>
</xsl:otherwise></xsl:choose>
<xsl:text disable-output-escaping="yes"><p> </xsl:text>
</xsl:template>
<xsl:template match="listitem"> <li> <xsl:apply-templates/> </li> </xsl:template>
<xsl:template match="listitem[@id]"> <li id="{@id}"> <xsl:apply-templates/> </li> </xsl:template>
<xsl:template match="list[@type='tag']">
<xsl:choose><xsl:when test="@compact = 'yes'">
<dl class="compact"> <xsl:apply-templates/> </dl>
</xsl:when><xsl:otherwise>
<dl> <xsl:apply-templates/> </dl>
</xsl:otherwise></xsl:choose>
</xsl:template>
<xsl:template match="para/list[@type='tag']">
<xsl:text disable-output-escaping="yes"></p> </xsl:text>
<xsl:choose><xsl:when test="@compact = 'yes'">
<dl class="compact"> <xsl:apply-templates/> </dl>
</xsl:when><xsl:otherwise>
<dl> <xsl:apply-templates/> </dl>
</xsl:otherwise></xsl:choose>
<xsl:text disable-output-escaping="yes"><p> </xsl:text>
</xsl:template>
<xsl:template match="tag-name"> <dt> <xsl:apply-templates/> </dt> </xsl:template>
<xsl:template match="tag-name[@id]"> <dt id="{@id}"> <xsl:apply-templates/> </dt> </xsl:template>
<xsl:template match="tag-desc"> <dd> <xsl:apply-templates/> </dd> </xsl:template>
<xsl:template match="table[@note and @width]">
<blockquote><table width="{@width}"> <xsl:apply-templates/> </table></blockquote>
</xsl:template>
<xsl:template match="table[@note and not(@width)]">
<blockquote><table width="100%"> <xsl:apply-templates/> </table></blockquote>
</xsl:template>
<xsl:template match="table[not(@note) and @width]">
<table width="{@width}"> <xsl:apply-templates/> </table>
</xsl:template>
<xsl:template match="table">
<table width="100%">
<xsl:if test="@class">
<xsl:attribute name="class"> <xsl:value-of select="@class"/> </xsl:attribute>
</xsl:if>
<xsl:apply-templates/>
</table>
</xsl:template>
<xsl:template match="tr"> <tr> <xsl:apply-templates/> </tr> </xsl:template>
<xsl:template match="td[@width]"> <td width="{@width}"> <xsl:apply-templates/> </td> </xsl:template>
<xsl:template match="td"> <td> <xsl:apply-templates/> </td> </xsl:template>
<xsl:template match="c-def"> <code> <xsl:apply-templates/> </code> </xsl:template>
<xsl:template match="c-func"> <code> <xsl:apply-templates/> <xsl:text>()</xsl:text> </code> </xsl:template>
<xsl:template match="command"> <code> <xsl:apply-templates/> </code> </xsl:template>
<xsl:template match="emphasis"> <strong> <xsl:apply-templates/> </strong> </xsl:template>
<xsl:template match="example"> <blockquote class="example"><pre> <xsl:apply-templates/> </pre></blockquote> </xsl:template>
<xsl:template match="para/example">
<xsl:text disable-output-escaping="yes"></p> </xsl:text>
<blockquote class="example"><pre> <xsl:apply-templates/> </pre></blockquote>
<xsl:text disable-output-escaping="yes"><p> </xsl:text>
</xsl:template>
<xsl:template match="literal"> <code> <xsl:apply-templates/> </code> </xsl:template>
<xsl:template match="header">
<xsl:text>“</xsl:text> <xsl:apply-templates/> <xsl:text>”</xsl:text>
</xsl:template>
<xsl:template match="http-status">
<xsl:value-of select="@code"/> <xsl:text> (</xsl:text> <xsl:value-of select="@text"/> <xsl:text>)</xsl:text>
</xsl:template>
<xsl:template match="value"> <code><i> <xsl:apply-templates/> </i></code> </xsl:template>
<xsl:template match="registered"> <xsl:apply-templates/> <sup> <xsl:text>®</xsl:text> </sup> </xsl:template>
<xsl:template match="var"> <code> <xsl:apply-templates/> </code> </xsl:template>
<xsl:template match="path"> <code> <xsl:apply-templates/> </code> </xsl:template>
<xsl:template match="i"> <i> <xsl:apply-templates/> </i> </xsl:template>
<xsl:template match="b"> <b> <xsl:apply-templates/> </b> </xsl:template>
<xsl:template match="nobr"> <nobr> <xsl:apply-templates/> </nobr> </xsl:template>
<xsl:template match="br"> <br/> </xsl:template>
<xsl:template match="video[@id]">
<div class="video">
<iframe type="text/html" src="https://www.youtube.com/embed/{@id}?modestbranding=1&rel=0&showinfo=0&color=white" frameborder="0" allowfullscreen="1">
</iframe>
</div>
</xsl:template>
</xsl:stylesheet>