Re: [xsl] xsl not formatting xml correctly in mozilla or firefox

Subject: Re: [xsl] xsl not formatting xml correctly in mozilla or firefox
From: Jon Gorman <jonathan.gorman@xxxxxxxxx>
Date: Thu, 2 Dec 2004 14:07:44 -0600
Hi again Andy,

I just realized why it was acting strangly without an output tag.

It's not a well formed html document.

Try something like this:

><xsl:template match="root">
<html>
<head>
<title>
The Table
</title>
</head>
<body>
><table border="1">
><tr>
>       <td>Forename</td>
>       <td>Surname</td>
>      <td>age</td>
></tr>
><xsl:apply-templates/>
></table>
</body>
</html>

Sorry to clutter mailboxes. Should have caught that while writing the
last email.  Even so, having an output tag can't hurt (someone please
correct me if I'm wrong on that).

Jon Gorman

Current Thread