File: Data.xml
<?xml version="1.0" encoding="utf-8"?>
<html>
<head>
<title>HTML</title>
</head>
<body>
<h1>HTML output</h1>
? </body>
</html>
File: Transform.xslt
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="Cp1250"/>
<xsl:template match="/">
<xsl:copy-of select="/source/*"/>
</xsl:template>
</xsl:stylesheet>
|