/ Published in: XML
This is just something very simple that I needed to do.
It outputs an xml without any change at all.
It outputs an xml without any change at all.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<xsl:output method='xml' version="1.0" indent='yes'/> <xsl:template match="/"> <xsl:copy-of select="."/> </xsl:template>