mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-06 02:44:53 +01:00
...
This commit is contained in:
parent
c3231297ed
commit
b748fa2fd4
1 changed files with 2 additions and 2 deletions
|
|
@ -6,9 +6,9 @@ class TechTarget(BasicNewsRecipe):
|
|||
description = '''IT Infrastructure related blogs
|
||||
from Techtarget'''
|
||||
publisher = 'Techtarget'
|
||||
language = 'en'
|
||||
category = 'IT, Infrastructure'
|
||||
oldest_article = 7
|
||||
language = 'en'
|
||||
max_articles_per_feed = 100
|
||||
no_stylesheets = True
|
||||
use_embedded_content = False
|
||||
|
|
@ -27,7 +27,7 @@ def get_browser(self):
|
|||
br.submit()
|
||||
return br
|
||||
|
||||
keep_only_tags = [dict(name='div', attrs={'id':'article'})]
|
||||
keep_only_tags = [dict(name='div', attrs={'id':'article'}),dict(name='div', attrs={'class':'entry'})]
|
||||
remove_tags= [dict(name='div', attrs={'id':['articleToolbar','relatedContent']})]
|
||||
remove_tags_after = [dict(name='div', attrs={'id':'relatedContent'})]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue