Return-Path: Delivered-To: apmail-xml-xalan-dev-archive@xml.apache.org Received: (qmail 60214 invoked by uid 500); 29 Jan 2002 15:48:02 -0000 Mailing-List: contact xalan-dev-help@xml.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: xalan-dev@xml.apache.org Delivered-To: mailing list xalan-dev@xml.apache.org Received: (qmail 60203 invoked from network); 29 Jan 2002 15:48:02 -0000 Subject: Re: problem with tag and xhtml To: xalan-dev@xml.apache.org Cc: susan_sanrio@hotmail.com X-Mailer: Lotus Notes Release 5.0.5 September 22, 2000 Message-ID: From: david_marston@us.ibm.com Date: Tue, 29 Jan 2002 10:43:48 -0500 X-MIMETrack: Serialize by Router on CAMMAIL08/CAM/M/Lotus(Release 5.0.8 |June 18, 2001) at 01/29/2002 10:43:49 AM MIME-Version: 1.0 Content-type: text/plain; charset=us-ascii X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N >I am currently using xalan 1.2.2. and I have problems with the >writing of html meta tags.... >My html file needs to be compliant to xhtml DTD.... Aha! When writing XHTML, its need to be XML-compliant takes precedence over the HTML requirements. You should use method="xml" in your xsl:output to ensure that you get well-formed XML. If you chose method="html", section 16.2 of the XSLT spec (fourth paragraph) requires that and several other tags be output without an end tag. We are looking for people to write a special XHTML serializer. For conformance to XSLT 1.0, the method keyword would have to be "xalan:xhtml" (i.e., Xalan-specific), but XSLT 2.0 will recognize "xhtml" as a standard method. .................David Marston