This commit is contained in:
Kovid Goyal 2023-04-28 08:38:27 +05:30
parent cac1514aa7
commit 6990da0581
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -4,7 +4,7 @@ __copyright__ = '2009 Neil Grogan'
# Irish Independent Recipe
#
from calibre.web.feeds.news import BasicNewsRecipe, classes
from calibre.web.feeds.news import BasicNewsRecipe
class IrishIndependent(BasicNewsRecipe):
@ -19,7 +19,7 @@ class IrishIndependent(BasicNewsRecipe):
keep_only_tags = [
dict(name='div', attrs={'class':lambda x: x and '_contentwrapper' in x})
]
remove_tags = [
dict(name='div', attrs={'data-testid':['article-share', 'embed-video']})
]