Drupal: text/plain – podpora obrázků a dalších vnořených elementů uvnitř odkazů.
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:a">
91 <xsl:text>"</xsl:text>
92 <xsl:apply-templates select="node()"/>
93 <xsl:text>" <</xsl:text>
95 <xsl:when test="matches(@href, '^(http:|https:|ftp:)')">
96 <xsl:value-of select="@href"/>
98 <xsl:when test="matches(@href, '^mailto:')">
99 <xsl:value-of select="substring-after(@href, 'mailto:')"/>
103 <xsl:when test="ends-with($urlBase, '/') or starts-with(@href, '/')">
104 <xsl:value-of select="concat($urlBase, @href)"/>
107 <xsl:value-of select="concat($urlBase, '/', @href)"/>
112 <xsl:text>></xsl:text>
113 <xsl:if test="@title and not(matches(@title, '^\s*$'))">
114 <xsl:text> (</xsl:text>
115 <xsl:value-of select="@title"/>
116 <xsl:text>)</xsl:text>
121 <xsl:template match="h:img">
122 <xsl:variable name="obrázek">
123 <h:a href="{@src}" title="{@title}">Obrázek: <xsl:value-of select="@alt"/></h:a>
125 <xsl:apply-templates select="$obrázek/node()"/>
129 <xsl:template match="h:strong|h:b">
130 <xsl:text>**</xsl:text>
131 <xsl:apply-templates/>
132 <xsl:text>**</xsl:text>
136 <xsl:template match="h:em|h:i">
137 <xsl:text>*</xsl:text>
138 <xsl:apply-templates/>
139 <xsl:text>*</xsl:text>
143 <xsl:template match="h:abbr[@title]">
144 <xsl:apply-templates/>
145 <xsl:text> (</xsl:text>
146 <xsl:value-of select="@title"/>
147 <xsl:text>)</xsl:text>
151 <xsl:template match="h:pre">
152 <xsl:text>--------------------------------</xsl:text>
153 <xsl:text> </xsl:text>
154 <xsl:apply-templates/>
155 <xsl:text> </xsl:text>
156 <xsl:text>--------------------------------</xsl:text>
157 <xsl:text> </xsl:text>
158 <xsl:text> </xsl:text>
162 <xsl:template match="h:code">
163 <xsl:text>`</xsl:text>
164 <xsl:apply-templates/>
165 <xsl:text>`</xsl:text>
169 <xsl:template match="h:hr">
170 <xsl:text>----------------------------------------------------------------</xsl:text>
171 <xsl:text> </xsl:text>
172 <xsl:text> </xsl:text>
176 <xsl:template match="h:ul">
177 <xsl:apply-templates/>
178 <xsl:text> </xsl:text>
182 <xsl:template match="h:ul/h:li">
183 <xsl:text> - </xsl:text>
184 <xsl:apply-templates/>
185 <xsl:text> </xsl:text>
189 <xsl:template match="h:ol">
190 <xsl:for-each select="h:li">
191 <xsl:value-of select="concat(' ', position(), ') ')"/>
192 <xsl:apply-templates/>
193 <xsl:text> </xsl:text>
195 <xsl:text> </xsl:text>
199 <xsl:template match="text()[not(parent::h:pre)]">
200 <xsl:if test="matches(., '^\s')">
201 <xsl:text> </xsl:text>
203 <xsl:value-of select="normalize-space(.)"/>
204 <xsl:if test="matches(., '\s$')">
205 <xsl:text> </xsl:text>
210 <xsl:template match="h:div[@class='wwwLinks']">
212 Dvě pomlčky a mezeru budou e-maliloví klienti považovat za začátek podpisu
213 a zobrazí ho šedivým písmem a nebudou ho citovat v odpovědích.
215 <xsl:text>-- </xsl:text>
216 <xsl:text> </xsl:text>
217 <xsl:apply-templates/>