Drupal: text/plain – h2 bude podtřžené = místo # + podpora značky cite.
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>
89 <xsl:template match="h:cite[not(matches(., '^("|„)'))]">
90 <xsl:text>„</xsl:text>
91 <xsl:apply-templates/>
92 <xsl:text>“</xsl:text>
95 <xsl:template match="h:a">
96 <xsl:text>"</xsl:text>
97 <xsl:apply-templates select="node()"/>
98 <xsl:text>" <</xsl:text>
100 <xsl:when test="matches(@href, '^(http:|https:|ftp:)')">
101 <xsl:value-of select="@href"/>
103 <xsl:when test="matches(@href, '^mailto:')">
104 <xsl:value-of select="substring-after(@href, 'mailto:')"/>
108 <xsl:when test="ends-with($urlBase, '/') or starts-with(@href, '/')">
109 <xsl:value-of select="concat($urlBase, @href)"/>
112 <xsl:value-of select="concat($urlBase, '/', @href)"/>
117 <xsl:text>></xsl:text>
118 <xsl:if test="@title and not(matches(@title, '^\s*$'))">
119 <xsl:text> (</xsl:text>
120 <xsl:value-of select="@title"/>
121 <xsl:text>)</xsl:text>
126 <xsl:template match="h:img">
127 <xsl:variable name="obrázek">
128 <h:a href="{@src}" title="{@title}">Obrázek: <xsl:value-of select="@alt"/></h:a>
130 <xsl:apply-templates select="$obrázek/node()"/>
134 <xsl:template match="h:strong|h:b">
135 <xsl:text>**</xsl:text>
136 <xsl:apply-templates/>
137 <xsl:text>**</xsl:text>
141 <xsl:template match="h:em|h:i">
142 <xsl:text>*</xsl:text>
143 <xsl:apply-templates/>
144 <xsl:text>*</xsl:text>
148 <xsl:template match="h:abbr[@title]">
149 <xsl:apply-templates/>
150 <xsl:text> (</xsl:text>
151 <xsl:value-of select="@title"/>
152 <xsl:text>)</xsl:text>
156 <xsl:template match="h:pre">
157 <xsl:text>--------------------------------</xsl:text>
158 <xsl:text> </xsl:text>
159 <xsl:apply-templates/>
160 <xsl:text> </xsl:text>
161 <xsl:text>--------------------------------</xsl:text>
162 <xsl:text> </xsl:text>
163 <xsl:text> </xsl:text>
167 <xsl:template match="h:code">
168 <xsl:text>`</xsl:text>
169 <xsl:apply-templates/>
170 <xsl:text>`</xsl:text>
174 <xsl:template match="h:hr">
175 <xsl:text>----------------------------------------------------------------</xsl:text>
176 <xsl:text> </xsl:text>
177 <xsl:text> </xsl:text>
181 <xsl:template match="h:ul">
182 <xsl:apply-templates/>
183 <xsl:text> </xsl:text>
187 <xsl:template match="h:ul/h:li">
188 <xsl:text> - </xsl:text>
189 <xsl:apply-templates/>
190 <xsl:text> </xsl:text>
194 <xsl:template match="h:ol">
195 <xsl:for-each select="h:li">
196 <xsl:value-of select="concat(' ', position(), ') ')"/>
197 <xsl:apply-templates/>
198 <xsl:text> </xsl:text>
200 <xsl:text> </xsl:text>
204 <xsl:template match="text()[not(parent::h:pre)]">
205 <xsl:if test="matches(., '^\s')">
206 <xsl:text> </xsl:text>
208 <xsl:value-of select="normalize-space(.)"/>
209 <xsl:if test="matches(., '\s$')">
210 <xsl:text> </xsl:text>
215 <xsl:template match="h:div[@class='wwwLinks']">
217 Dvě pomlčky a mezeru budou e-maliloví klienti považovat za začátek podpisu
218 a zobrazí ho šedivým písmem a nebudou ho citovat v odpovědích.
220 <xsl:text>-- </xsl:text>
221 <xsl:text> </xsl:text>
222 <xsl:apply-templates/>