Re: [xsl] HTML to XML

Subject: Re: [xsl] HTML to XML
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 27 May 2009 16:22:28 +0100
<xsl:template match="xhtml:html">
so there the current node is the html element

<html>
here you are making a node in the result tree that is html in
no-namespace ((perhaps that's what you want, or perhaps you want to add
xmlns="http://www.w3.org/199/xhtml";
to your xsl:stylesheet so that the result eleemnts are xhtmll.

	<!--xsl:value-of select="xhtml//head//title"/-->
the first step of that would select child elements of the current node
that had name xhtml in no namespace so
<html xmlns="http://www.w3.org/199/xhtml";>
<xhtml xmlns="">

which is not there so it selects nothing.

Starting from the html element you want to step down two levels, the
child head element and its child title, both in the xhtml namespace so:

select="xhtml:head/xhtml:title"

David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________

Current Thread