comparison emldown_templates/rights.xsl @ 0:4a468c0c2260 draft default tip

planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/main/tools-ecology/tools/make_data_paper_sketches commit 34f4e0604adc2a2ba4902ce6b8e6df2460eda292
author ecology
date Tue, 15 Oct 2024 20:33:32 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4a468c0c2260
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="1.0"
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4
5 <xsl:template name="rights" match="/">
6 <xsl:choose>
7 <xsl:when test=".//intellectualRights">
8 <h3>Intellectual Rights</h3>
9 <p>
10 <xsl:value-of select="//dataset/intellectualRights" />
11 </p>
12 </xsl:when>
13 </xsl:choose>
14 </xsl:template>
15 </xsl:stylesheet>
16