From ccd22c70d48575c2cb35da18fd911c7f6e3c5262 Mon Sep 17 00:00:00 2001 From: zeterberg <zeterberg@ug-sub-5170.sub.uni-goettingen.de> Date: Mon, 4 Mar 2024 16:28:53 +0100 Subject: [PATCH] fix(edxml2html): Remove Kolon Heading --- scenarios/xslt/edxml2html/libs/html-philology.lib.xsl | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/scenarios/xslt/edxml2html/libs/html-philology.lib.xsl b/scenarios/xslt/edxml2html/libs/html-philology.lib.xsl index f1f046f..2b267b5 100644 --- a/scenarios/xslt/edxml2html/libs/html-philology.lib.xsl +++ b/scenarios/xslt/edxml2html/libs/html-philology.lib.xsl @@ -35,14 +35,8 @@ <xsl:variable name="id" select="if(@xml:id) then (@xml:id) else ('facs_'||generate-id(.))"/> <xsl:variable name="corresp" select="if(@corresp) then (tokenize(@corresp, ' ')) else (false())"/> <div class="unit" id="{$id}" data-corresp="{$corresp}"> - <!--<h2 class="head hide"> - <a class="anchor" href="#{$id}"> - <span class="unit-label">Kolon</span> - <span class="unit-nr"><xsl:apply-templates select="@n"/></span> - </a> - </h2>--> <div class="container unit-container"> - <div class="anchor-container"> + <!--<div class="anchor-container"> <a class="anchor" href="#{$id}"> <span class="unit-label">Kolon</span> <span class="unit-nr"> @@ -54,7 +48,7 @@ <xsl:value-of select="count(preceding::unit)+1"/> </span> </a> - </div> + </div>--> <xsl:apply-templates /> </div> </div> -- GitLab