blob: 977c38bfb7c12ebeab8c391a3e8f6e73bc464b72 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="xml"/>
<xsl:template match="/">
<authors>
<xsl:apply-templates/>
</authors>
</xsl:template>
<xsl:template match="author">
<author>
<xsl:attribute name="name">
<xsl:value-of select="@name"/>
</xsl:attribute>
</author>
</xsl:template>
</xsl:stylesheet>