ID: 29199
Updated by: [EMAIL PROTECTED]
Reported By: saran at inra dot co dot th
-Status: Open
+Status: Bogus
Bug Type: Unknown/Other Function
Operating System: Windows 2000
PHP Version: 5.0.0
New Comment:
This is an issue with libtidy itself. It wont put <p> tags around
content inside of <td>'s.
Previous Comments:
------------------------------------------------------------------------
[2004-07-16 09:10:02] saran at inra dot co dot th
Description:
------------
Tidy's "enclose-block-text" option doesn't works. It should insert a
<p> element to enclose any text it finds in any element that allows
mixed content. In example below it should insert a <p> element to
enclose text inside a <td> element (as tidy.exe did with this same
option set to true).
Reproduce code:
---------------
<?
$html="
<html>
<body>
<table>
<tr>
<td>Test</td>
</tr>
</table>
</body>
</html>
";
$config=array('enclose-block-text'=>1);
$tidy=tidy_parse_string($html,$config);
echo tidy_get_body($tidy);
?>
Expected result:
----------------
<body>
<table>
<tr>
<td><p>Test</p></td>
</tr>
</table>
</body>
Actual result:
--------------
<body>
<table>
<tr>
<td>Test</td>
</tr>
</table>
</body>
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=29199&edit=1