Tidy (still) trimms tags in TR

Hi,

HTML Tidy trimms tags wrapped into TR, instead of putting them into a TD
element.

Example:

<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
<TABLE><TR><P>some text</P></TR></TABLE>
</BODY>
</HTML>

Tidy's output is:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title></title>
</head>
<body>
<table>
<tr>
<td></td>
</tr>
</table>
</body>
</html>

and the text disapperad.

regards,
  Björn Höhrmann

Received on Tuesday, 19 October 1999 15:55:02 UTC