<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!---->
<xsl:output method="html" indent="yes" version="4.0" encoding="us-ascii" media-type="text/html" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" />
<!---->
<xsl:include href="/gnomon/util/xml-source-link.xsl" />
<!---->
<xsl:template match="/document">
<!---->
<html>
<!---->
<head><title><xsl:value-of select="title" /></title></head>
<!---->
<body>
<xsl:apply-templates select="body" />
</body>
</html>
</xsl:template>
<!---->
<xsl:template match="heading">
<h1><xsl:apply-templates select="node()" /></h1>
</xsl:template>
<!---->
<xsl:template match="sub-heading">
<h2><xsl:apply-templates select="node()" /></h2>
</xsl:template>
<!---->
<xsl:template match="paragraph">
<p><xsl:apply-templates select="node()" /></p>
</xsl:template>
</xsl:stylesheet>