Mercurial > repos > ecology > data_paper_from_eml
comparison emldown_templates/otherentity.xsl @ 0:cfe884e53600 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:48 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:cfe884e53600 |
---|---|
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="otherentity" match="/"> | |
6 <xsl:choose> | |
7 <xsl:when test=".//otherEntity"> | |
8 <h3>Other entities</h3> | |
9 <xsl:for-each select=".//otherEntity"> | |
10 <br/> | |
11 <xsl:value-of select="entityName"/> | |
12 <br/> | |
13 </xsl:for-each> | |
14 </xsl:when> | |
15 </xsl:choose> | |
16 </xsl:template> | |
17 </xsl:stylesheet> | |
18 | |
19 |