mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-02 05:44:06 +02:00
Fix Times of India recipe
This commit is contained in:
parent
b3e77bac61
commit
4881958675
1 changed files with 3 additions and 2 deletions
|
|
@ -8,9 +8,10 @@ class TimesOfIndia(BasicNewsRecipe):
|
|||
max_articles_per_feed = 25
|
||||
|
||||
no_stylesheets = True
|
||||
keep_only_tags = [dict(attrs={'class':'prttabl'})]
|
||||
keep_only_tags = [dict(attrs={'class':'maintable12'})]
|
||||
remove_tags = [
|
||||
dict(style=lambda x: x and 'float' in x)
|
||||
dict(style=lambda x: x and 'float' in x),
|
||||
dict(attrs={'class':'prvnxtbg'}),
|
||||
]
|
||||
|
||||
feeds = [
|
||||
|
|
|
|||
Loading…
Reference in a new issue