If WHOOGLE_MINIMAL is activated, collapse all non-link results
This commit is contained in:
parent
19e89de5d9
commit
02c1aa2917
|
@ -186,8 +186,12 @@ class Filter:
|
||||||
# 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:
|
||||||
result_children = pull_child_divs(result)
|
result_children = pull_child_divs(result)
|
||||||
if len(result_children) < self.RESULT_CHILD_LIMIT:
|
if WHOOGLE_MINIMAL=="1":
|
||||||
continue
|
if len(result_children) in (1,3):
|
||||||
|
continue
|
||||||
|
else:
|
||||||
|
if len(result_children) < self.RESULT_CHILD_LIMIT:
|
||||||
|
continue
|
||||||
|
|
||||||
# Find and decompose the first element with an inner HTML text val.
|
# Find and decompose the first element with an inner HTML text val.
|
||||||
# This typically extracts the title of the section (i.e. "Related
|
# This typically extracts the title of the section (i.e. "Related
|
||||||
|
|
Loading…
Reference in New Issue
Block a user