summaryrefslogtreecommitdiff
path: root/xslt/mallard/html/mal2xhtml.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'xslt/mallard/html/mal2xhtml.xsl')
-rw-r--r--xslt/mallard/html/mal2xhtml.xsl16
1 files changed, 15 insertions, 1 deletions
diff --git a/xslt/mallard/html/mal2xhtml.xsl b/xslt/mallard/html/mal2xhtml.xsl
index df7a07d..2f556e7 100644
--- a/xslt/mallard/html/mal2xhtml.xsl
+++ b/xslt/mallard/html/mal2xhtml.xsl
@@ -22,10 +22,23 @@ Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
exclude-result-prefixes="mal"
version="1.0">
+
+<xsl:import href="../../gettext/gettext.xsl"/>
+
+<!--#@ mal.chunk.doctype_public -->
+<xsl:param name="mal.chunk.doctype_public" select="'-//W3C//DTD XHTML 1.0 Strict//EN'"/>
+
+<!--#@ mal.chunk.doctype_system -->
+<xsl:param name="mal.chunk.doctype_system" select="'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'"/>
+
+<xsl:output method="xml"
+ doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
+ doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
+
<!--#@ mal2html.namespace -->
<xsl:param name="mal2html.namespace" select="'http://www.w3.org/1999/xhtml'"/>
-<xsl:param name="mal.extension" select="'.xhtml'"/>
+<xsl:param name="mal.chunk.extension" select="'.xhtml'"/>
<!--!!==========================================================================
Mallard to HTML
@@ -33,6 +46,7 @@ Mallard to HTML
REMARK: Describe this module
-->
+<xsl:include href="../common/mal-chunk.xsl"/>
<xsl:include href="../common/mal-link.xsl"/>
<xsl:include href="mal2html-block.xsl"/>