I am trying to make a simple selection just for a test, but it doesn't seem to work. Here is the sml: http://pastebin.com/cwEcVEiL
And here is my xslt style:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:tei="http://www.tei-c.org/ns/1.0"
exclude-result-prefixes="xs"
version="2.0">
<xsl:template match="/tei:TEI/tei:text/tei:body">
TEST
</xsl:template>
</xsl:stylesheet>
With this style it just selects the entire xml document but if I type match="/", then I outputs TEST once, as expected.
What is the problem?