teacup/transforms/monograph-publish.xslt

13 lines
575 B
HTML
Raw Permalink Normal View History

2021-12-15 11:29:23 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="/*:book/*:info[1]/*:title/text()[1]">
<xsl:text>Modified: </xsl:text><xsl:value-of select="."/>
</xsl:template>
</xsl:stylesheet>