You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by Robert Petersen <ro...@orangefood.com> on 2001/03/28 19:08:32 UTC

Not getting DOCTYPE-PUBLIC

I am to able to get the DOCTYPE decleration to generate.  My output decleration looks like this:
<xsl:output method="xml" omit-xml-declaration="no" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
and I am trying to get this
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

the result is something like this:
<?xml version="1.0" encoding="UTF-8"?>
<html>
.
.
.
</html>

Am I doning this right?

Thanks,
Robert