blob: 60ab6936fac40caf9bbcfd4ab4ea900237d928cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>
<xsl:template mode="title" match="*">
<xsl:text> — TEST CASE</xsl:text>
<xsl:apply-imports/>
</xsl:template>
<xsl:template match="/">
<h3 xmlns="http://www.w3.org/1999/xhtml"><xsl:apply-templates select="title" mode="title"/></h3>
</xsl:template>
</xsl:stylesheet>
|