Drupal: text/plain – odstranění přebytečných mezer na začátcích a koncích odstavců (oprava).
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="2.0"
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4 xmlns:fn="http://www.w3.org/2005/xpath-functions"
5 xmlns:h="http://www.w3.org/1999/xhtml">
6 <xsl:output method="text" encoding="UTF-8"/>
7 <xsl:strip-space elements="*"/>
9 <xsl:output method="text" encoding="UTF-8"/>
10 <xsl:strip-space elements="*"/>
12 <xsl:variable name="urlBase" select="/h:html/h:head/h:base/@href"/>
15 <!-- Celý dokument -->
16 <xsl:template match="/">
17 <xsl:apply-templates select="h:html/h:body"/>
21 <xsl:template match="h:h1">
22 <xsl:value-of select="text()"/>
23 <xsl:text> </xsl:text>
24 <xsl:for-each select="1 to string-length(.)">=</xsl:for-each>
25 <xsl:text> </xsl:text>
26 <xsl:text> </xsl:text>
30 <xsl:template match="h:h2">
31 <xsl:value-of select="text()"/>
32 <xsl:text> </xsl:text>
33 <xsl:for-each select="1 to string-length(.)">-</xsl:for-each>
34 <xsl:text> </xsl:text>
35 <xsl:text> </xsl:text>
39 <xsl:template match="h:h3">
40 <xsl:for-each select="1 to 3">#</xsl:for-each>
41 <xsl:text> </xsl:text>
42 <xsl:value-of select="text()"/>
43 <xsl:text> </xsl:text>
44 <xsl:text> </xsl:text>
48 <xsl:template match="h:h4">
49 <xsl:for-each select="1 to 4">#</xsl:for-each>
50 <xsl:text> </xsl:text>
51 <xsl:value-of select="text()"/>
52 <xsl:text> </xsl:text>
53 <xsl:text> </xsl:text>
57 <xsl:template match="h:h5">
58 <xsl:for-each select="1 to 5">#</xsl:for-each>
59 <xsl:text> </xsl:text>
60 <xsl:value-of select="text()"/>
61 <xsl:text> </xsl:text>
62 <xsl:text> </xsl:text>
66 <xsl:template match="h:h6">
67 <xsl:for-each select="1 to 6">#</xsl:for-each>
68 <xsl:text> </xsl:text>
69 <xsl:value-of select="text()"/>
70 <xsl:text> </xsl:text>
71 <xsl:text> </xsl:text>
75 <xsl:template match="h:p">
76 <xsl:apply-templates/>
77 <xsl:text> </xsl:text>
78 <xsl:text> </xsl:text>
82 <xsl:template match="h:blockquote/h:p">
83 <xsl:text>> </xsl:text>
84 <xsl:apply-templates/>
85 <xsl:text> </xsl:text>
86 <xsl:text> </xsl:text>
90 <xsl:template match="h:cite[not(matches(., '^("|„)'))]">
91 <xsl:text>„</xsl:text>
92 <xsl:apply-templates/>
93 <xsl:text>“</xsl:text>
97 <xsl:template match="h:a">
98 <xsl:text>'</xsl:text>
99 <xsl:apply-templates select="node()"/>
100 <xsl:text>' <</xsl:text>
102 <xsl:when test="matches(@href, '^(http:|https:|ftp:)')">
103 <xsl:value-of select="@href"/>
105 <xsl:when test="matches(@href, '^mailto:')">
106 <xsl:value-of select="substring-after(@href, 'mailto:')"/>
110 <xsl:when test="ends-with($urlBase, '/') or starts-with(@href, '/')">
111 <xsl:value-of select="concat($urlBase, @href)"/>
114 <xsl:value-of select="concat($urlBase, '/', @href)"/>
119 <xsl:text>></xsl:text>
120 <xsl:if test="@title and not(matches(@title, '^\s*$'))">
121 <xsl:text> (</xsl:text>
122 <xsl:value-of select="@title"/>
123 <xsl:text>)</xsl:text>
128 <xsl:template match="h:img">
129 <xsl:variable name="obrázek">
130 <h:a href="{@src}" title="{@title}">Obrázek: <xsl:value-of select="@alt"/></h:a>
132 <xsl:apply-templates select="$obrázek/node()"/>
136 <xsl:template match="h:strong|h:b">
137 <xsl:text>**</xsl:text>
138 <xsl:apply-templates/>
139 <xsl:text>**</xsl:text>
143 <xsl:template match="h:em|h:i">
144 <xsl:text>*</xsl:text>
145 <xsl:apply-templates/>
146 <xsl:text>*</xsl:text>
150 <xsl:template match="h:abbr[@title]">
151 <xsl:apply-templates/>
152 <xsl:text> (</xsl:text>
153 <xsl:value-of select="@title"/>
154 <xsl:text>)</xsl:text>
158 <xsl:template match="h:pre">
159 <xsl:text>--------------------------------</xsl:text>
160 <xsl:text> </xsl:text>
161 <xsl:apply-templates/>
162 <xsl:text> </xsl:text>
163 <xsl:text>--------------------------------</xsl:text>
164 <xsl:text> </xsl:text>
165 <xsl:text> </xsl:text>
169 <xsl:template match="h:code">
170 <xsl:text>`</xsl:text>
171 <xsl:apply-templates/>
172 <xsl:text>`</xsl:text>
176 <xsl:template match="h:hr">
177 <xsl:text>----------------------------------------------------------------</xsl:text>
178 <xsl:text> </xsl:text>
179 <xsl:text> </xsl:text>
183 <xsl:template match="h:ol|h:ul">
184 <xsl:variable name="úroveň" select="count(ancestor::h:li)"/>
185 <xsl:variable name="odsazení">
186 <!-- položky na nejvyšší úrovni odsazené jednou mezerou -->
187 <xsl:value-of select="' '"/>
188 <xsl:for-each select="2 to $úroveň+1">
189 <!-- položky na druhé a vyšší úrovni odsazené vždy dvěma dalšími mezerami -->
190 <xsl:value-of select="' '"/>
194 <xsl:if test="$úroveň gt 0">
195 <xsl:text> </xsl:text>
198 <xsl:for-each select="h:li">
199 <xsl:if test="parent::h:ol"><xsl:value-of select="concat($odsazení, position(), ') ')"/></xsl:if>
200 <xsl:if test="parent::h:ul"><xsl:value-of select="concat($odsazení, '- ')"/></xsl:if>
201 <xsl:apply-templates/>
202 <xsl:if test="$úroveň = 0 or not(position() = last())">
203 <xsl:text> </xsl:text>
207 <xsl:if test="$úroveň = 0">
208 <xsl:text> </xsl:text>
213 <xsl:template match="text()[not(parent::h:pre)]">
214 <xsl:if test="matches(., '^\s') and preceding-sibling::node()">
215 <xsl:text> </xsl:text>
217 <xsl:value-of select="normalize-space(.)"/>
218 <xsl:if test="matches(., '\s$') and following-sibling::node()">
219 <xsl:text> </xsl:text>
224 <xsl:template match="h:div[@class='wwwLinks']">
226 Dvě pomlčky a mezeru budou e-maliloví klienti považovat za začátek podpisu
227 a zobrazí ho šedivým písmem a nebudou ho citovat v odpovědích.
229 <xsl:text>-- </xsl:text>
230 <xsl:text> </xsl:text>
231 <xsl:apply-templates/>