mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-07-30 19:00:10 +02:00
feat: add directive for removing blank nodes (#404)
This commit is contained in:
10
tests/HTMLPurifier/FixtureData/RemoveBlankTestCaseInput.html
Normal file
10
tests/HTMLPurifier/FixtureData/RemoveBlankTestCaseInput.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<table>
|
||||
<caption>
|
||||
Cool Table
|
||||
</caption>
|
||||
<tr>
|
||||
<td>
|
||||
Element 1
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@@ -0,0 +1,7 @@
|
||||
<table><caption>
|
||||
Cool Table
|
||||
</caption>
|
||||
<tr><td>
|
||||
Element 1
|
||||
</td>
|
||||
</tr></table>
|
Reference in New Issue
Block a user