Merge remote-tracking branch 'origin/master' into feature/autocomplete
This commit is contained in:
commit
351a584fee
|
@ -90,6 +90,11 @@ class Filter:
|
||||||
for script in soup('script'):
|
for script in soup('script'):
|
||||||
script.decompose()
|
script.decompose()
|
||||||
|
|
||||||
|
# Remove google's language/time config
|
||||||
|
st_card = soup.find('div', id='st-card')
|
||||||
|
if st_card:
|
||||||
|
st_card.decompose()
|
||||||
|
|
||||||
footer = soup.find('div', id='sfooter')
|
footer = soup.find('div', id='sfooter')
|
||||||
if footer:
|
if footer:
|
||||||
footer.decompose()
|
footer.decompose()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user