-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Labels
fixedAn {bug|improvement} that has been {fixed|implemented}An {bug|improvement} that has been {fixed|implemented}
Milestone
Description
Input:
<html>
<head></head>
<body>
<p>
<span>
<table>
<tbody>
<tr>
<td><span>Hello table data</span></td>
</tr>
</tbody>
</table>
</span>
</p>
</body>
</html>
Jsoup output:
<html>
<head></head>
<body>
<p>
<span>
</span></p><table>
<tbody>
<tr>
<td><span>Hello table data</span></td>
</tr>
</tbody>
</table>
<p></p>
</body>
</html>
The table tag inside span of p tag is unwrapped as next sibling of p tag. Additionally an empty p tag is created as the next sibling of the unwrapped table tag. This output is not seen in Chrome and Firefox browsers
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
fixedAn {bug|improvement} that has been {fixed|implemented}An {bug|improvement} that has been {fixed|implemented}