Index: šablona/stránka.xsl
===================================================================
--- šablona/stránka.xsl	(revision 4:1bb39595a51c)
+++ šablona/stránka.xsl	(revision 5:0a7c6c9357d3)
@@ -6,4 +6,5 @@
 	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 	xmlns:fn="http://www.w3.org/2005/xpath-functions"
+	xmlns:svg="http://www.w3.org/2000/svg"
 	exclude-result-prefixes="fn h g">
 	<xsl:output 
@@ -14,4 +15,5 @@
 		doctype-system="http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd"/>
 	
+	<!-- Celý dokument: -->
 	<xsl:template match="/">
 		<html>
@@ -39,9 +41,11 @@
 	</xsl:template>
 	
-	<xsl:template match="node()|@*">
-		<xsl:copy>
-			<xsl:apply-templates select="node()|@*"/>
-		</xsl:copy>
-	</xsl:template>
+	<!-- Kopírujeme elementy, ale vynecháme nepoužité xmlns deklarace: -->
+	<xsl:template match="*">
+		<xsl:element name="{name()}">
+			<xsl:copy-of select="@*"/>
+			<xsl:apply-templates/>
+		</xsl:element>
+    </xsl:template>
 
 </xsl:stylesheet>
