Skip to content
Snippets Groups Projects
Commit ccd22c70 authored by zeterberg's avatar zeterberg
Browse files

fix(edxml2html): Remove Kolon Heading

parent faacd689
No related branches found
No related tags found
1 merge request!6Resolve "corr: 4 Kolon..."
...@@ -35,14 +35,8 @@ ...@@ -35,14 +35,8 @@
<xsl:variable name="id" select="if(@xml:id) then (@xml:id) else ('facs_'||generate-id(.))"/> <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())"/> <xsl:variable name="corresp" select="if(@corresp) then (tokenize(@corresp, ' ')) else (false())"/>
<div class="unit" id="{$id}" data-corresp="{$corresp}"> <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="container unit-container">
<div class="anchor-container"> <!--<div class="anchor-container">
<a class="anchor" href="#{$id}"> <a class="anchor" href="#{$id}">
<span class="unit-label">Kolon</span> <span class="unit-label">Kolon</span>
<span class="unit-nr"> <span class="unit-nr">
...@@ -54,7 +48,7 @@ ...@@ -54,7 +48,7 @@
<xsl:value-of select="count(preceding::unit)+1"/> <xsl:value-of select="count(preceding::unit)+1"/>
</span> </span>
</a> </a>
</div> </div>-->
<xsl:apply-templates /> <xsl:apply-templates />
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment