xsl-list
[Top] [All Lists]

Re: [xsl] HTML to XML

2009-05-27 11:21:01
Knight, Michel wrote:

Trying to get the title node content from menu_test.htm using test.xsl:
As you can see I've tried a few combination with no success, could
anybody educate me on the proper approach.

<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
xmlns:xhtml="http://www.w3.org/199/xhtml";>
                                 ^^^
That should be 1999 for the XHTML 1 namespace as defined by the W3C.

<xsl:template match="xhtml:html">
<html>
<head>
<title>Testing</title>
</head>
<body>

<!--xsl:value-of select="xhtml:head/xhtml:title"/-->

That should do, once the namespace problem above is corrected.

--

        Martin Honnen
        http://msmvps.com/blogs/martin_honnen/

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>