1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-01 17:38:37 +00:00

Keep other table rows and columns

This commit is contained in:
Jake Walker 2023-04-01 10:02:58 +01:00 committed by Frédéric Guillot
parent 49d2596fc6
commit 8b6dd3e599
2 changed files with 19 additions and 18 deletions

View file

@ -327,8 +327,8 @@ func TestRewriteBase64DecodeArgs(t *testing.T) {
}
func TestRewriteRemoveTables(t *testing.T) {
content := `<table class="container"><tbody><tr><td><p>Test</p><table class="row"><tbody><tr><td>Hello World!</td></tr></tbody></table></td></tr></tbody></table>`
expected := `<p>Test</p>Hello World!`
content := `<table class="container"><tbody><tr><td><p>Test</p><table class="row"><tbody><tr><td><p>Hello World!</p></td><td><p>Test</p></td></tr></tbody></table></td></tr></tbody></table>`
expected := `<p>Test</p><p>Hello World!</p><p>Test</p>`
output := Rewriter("https://example.org/article", content, `remove_tables`)
if expected != output {