S
samppi
I'm teaching myself XSLT right now, but, just as part of learning, I'm
trying to figure out how one would transform a document an identical
document.
This doesn't work:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/
Transform">
<xsl:template match="/">
<xsl:value-of select="/"/>
</xsl:template>
</xsl:stylesheet>
....but I can't figure out how else one would do it.
Thanks in advance!
trying to figure out how one would transform a document an identical
document.
This doesn't work:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/
Transform">
<xsl:template match="/">
<xsl:value-of select="/"/>
</xsl:template>
</xsl:stylesheet>
....but I can't figure out how else one would do it.
Thanks in advance!