Files
lenz-web/views/public/xslt/transform-citation.xsl
Simon Martens e19fd47c17 Init
2025-03-05 16:41:39 +01:00

14 lines
331 B
XML

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" indent="yes" />
<xsl:template match="title">
<em>
<xsl:apply-templates />
</em>
</xsl:template>
<xsl:template match="year">
<span class="">
<xsl:apply-templates />
</span>
</xsl:template>
</xsl:stylesheet>