1.1 --- a/šablona/stránka.xsl Tue Aug 23 20:05:56 2011 +0200
1.2 +++ b/šablona/stránka.xsl Tue Sep 13 18:57:24 2011 +0200
1.3 @@ -169,5 +169,20 @@
1.4 </xsl:otherwise>
1.5 </xsl:choose>
1.6 </xsl:template>
1.7 +
1.8 + <!--
1.9 + Makro pro Wiki syntaxi
1.10 + -->
1.11 + <xsl:template match="m:wiki">
1.12 + <xsl:variable name="wikiXHTML" select="j:formátujWiki(text(), @syntaxe)"/>
1.13 + <xsl:choose>
1.14 + <xsl:when test="$wikiXHTML">
1.15 + <xsl:value-of select="$wikiXHTML" disable-output-escaping="yes"/>
1.16 + </xsl:when>
1.17 + <xsl:otherwise>
1.18 + <xsl:message terminate="yes">Při zpracování wiki syntaxe došlo k chybě.</xsl:message>
1.19 + </xsl:otherwise>
1.20 + </xsl:choose>
1.21 + </xsl:template>
1.22
1.23 </xsl:stylesheet>