From d95777b75186ca5d455aed5adc64f7885aa328a7 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 10 Sep 2015 20:51:41 +0530 Subject: [PATCH] Update Strategy+Business --- recipes/strategy-business.recipe | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/recipes/strategy-business.recipe b/recipes/strategy-business.recipe index ca804c4bf8..9bc29c142c 100644 --- a/recipes/strategy-business.recipe +++ b/recipes/strategy-business.recipe @@ -65,8 +65,10 @@ class StrategyBusinessRecipe(BasicNewsRecipe): feeds.append((u'Business Literature', u'http://feeds.feedburner.com/StrategyBusiness-BusinessLiterature?format=xml')) feeds.append((u'Recent Research', u'http://feeds.feedburner.com/StrategyBusiness-RecentResearch?format=xml')) - keep_only_tags = [] - keep_only_tags.append(dict(name='div', attrs={'id': 'sb-column2'})) + keep_only_tags = [ + dict(name='h1'), + dict(attrs={'class':['introAndByline', 'content', 'resources']}), + ] remove_tags = [] remove_tags.append(dict(name='img', attrs={'class': 'content1'}))