This commit is contained in:
2017-06-30 00:35:11 -04:00
parent f6527af909
commit 2a83e33373
2 changed files with 6 additions and 2 deletions

View File

@@ -4,6 +4,10 @@
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:apply-templates select="html" />
</xsl:template>
<xsl:template match="html">
<html>
<xsl:apply-templates select="head" />
<xsl:apply-templates select="body" />
@@ -24,7 +28,7 @@ xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="body">
<body>
<apply-templates select="header" />
<xsl:apply-templates select="header" />
</body>
</xsl:template>