<?xml version="1.0" encoding="Shift_JIS" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" version="1.0" indent="yes" standalone="yes" omit-xml-declaration="no" />
<xsl:template match="/">
<textarea cols="120" rows="34">
<xsl:text disable-output-escaping="yes"><![CDATA[
<?xml version="1.0" encoding="Shift_JIS" ?>
<?xml-stylesheet type="text/xsl" href="test.xsl"?>
]]></xsl:text>
<xsl:apply-templates select="*"/>
</textarea>
</xsl:template>
<xsl:template match="//include">
	<xsl:copy-of select="document(@src)/*"/>
</xsl:template>
<xsl:template match="*|@*|text()|comment()">
	<xsl:copy>
		<xsl:apply-templates select="*|@*|text()|comment()"/>
	</xsl:copy>
</xsl:template>
</xsl:stylesheet>
