<?xml version="1.0" encoding="shift_jis"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- xmlns:msxsl="urn:schemas-microsoft-com:xslt" -->
<xsl:output method="html" version="4.01" encoding="Shift_JIS" standalone="yes" doctype-public="-//W3C//DTD HTML 4.01//EN" doctype-system="http://www.w3.org/TR/html4/strict.dtd" indent="yes" media-type="text/html"/>

<xsl:template match="/document">
<html>
<head>
<meta http-equiv="content-script-type" content="text/javascript"/>
<meta http-equiv="content-style-type" content="text/css"/>
<link rel="stylesheet" type="text/css" href="readme.css"/>
<title><xsl:value-of select="./body/h1"/></title>
</head>
<body>
<xsl:copy-of select="./body"/>
<!--p>xsl:version=<xsl:value-of select="system-property('xsl:version')"/>,
xsl:vendor=<xsl:value-of select="system-property('xsl:vendor')"/>,
xsl:vendor-url=<xsl:value-of select="system-property('xsl:vendor-url')"/>,
extra=<xsl:value-of select="system-property('msxsl:version')"/>
</p-->
</body>
</html>
</xsl:template>

</xsl:stylesheet>
