Files
kgpz_web/views/routes/components/_xslt_citation.gohtml
Simon Martens 58df7cc1cb XSLT examlpe
2024-12-28 08:15:55 +01:00

16 lines
405 B
Plaintext

<script id="citation-xslt" type="application/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>
</script>