Fix `collapse_sections` for `MINIMAL_MODE` (#654)
parent
7c5094d37b
commit
b2c048af92
|
@ -205,13 +205,17 @@ class Filter:
|
||||||
return
|
return
|
||||||
|
|
||||||
# Loop through results and check for the number of child divs in each
|
# Loop through results and check for the number of child divs in each
|
||||||
for result in self.main_divs:
|
for result in self.main_divs.find_all():
|
||||||
result_children = pull_child_divs(result)
|
result_children = pull_child_divs(result)
|
||||||
if minimal_mode:
|
if minimal_mode:
|
||||||
if any(f">{x}</span" in str(s) for s in result_children
|
if any(f">{x}</span" in str(s) for s in result_children
|
||||||
for x in minimal_mode_sections):
|
for x in minimal_mode_sections):
|
||||||
result.decompose()
|
result.decompose()
|
||||||
continue
|
continue
|
||||||
|
for s in result_children:
|
||||||
|
if ('Twitter ›' in str(s)):
|
||||||
|
result.decompose()
|
||||||
|
continue
|
||||||
if len(result_children) < self.RESULT_CHILD_LIMIT:
|
if len(result_children) < self.RESULT_CHILD_LIMIT:
|
||||||
continue
|
continue
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue