From 59f0edb007f2d834411272f81010fe84bfe3d656 Mon Sep 17 00:00:00 2001
From: Max-Ferdinand Zeterberg <zeterberg@sub.uni-goettingen.de>
Date: Wed, 17 Apr 2024 17:19:28 +0200
Subject: [PATCH] fix(translation): exclude value of @cert from transformation

---
 scenarios/xslt/edxml2html/libs/html-philology.lib.xsl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scenarios/xslt/edxml2html/libs/html-philology.lib.xsl b/scenarios/xslt/edxml2html/libs/html-philology.lib.xsl
index 49b0e32..0adf23d 100644
--- a/scenarios/xslt/edxml2html/libs/html-philology.lib.xsl
+++ b/scenarios/xslt/edxml2html/libs/html-philology.lib.xsl
@@ -129,7 +129,7 @@
                     <xsl:value-of select="./@cert"/>
                 </xsl:attribute>
             </xsl:if>
-            <xsl:apply-templates select="@* | node()"/>
+            <xsl:apply-templates select="@*[name()!='cert'] | node()"/>
         </xsl:element>
     </xsl:template>
 
-- 
GitLab