Skip to content
Snippets Groups Projects
Commit 3f318abc authored by David Maus's avatar David Maus
Browse files

@cert in Author bei Darstellung berücksichtigen

parent 2bd1241d
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,12 @@
<td>
<xsl:choose>
<xsl:when test="//tei:author[normalize-space()]">
<xsl:value-of select="//tei:author"/>
<xsl:for-each select="//tei:author[normalize-space()]">
<xsl:value-of select="."/>
<xsl:if test="@cert">
<xsl:text> (?)</xsl:text>
</xsl:if>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>-</xsl:otherwise>
</xsl:choose>
......
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