From b4d664462282077ae73b32246970990e63bd54ed Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 20 May 2020 07:34:34 +0530 Subject: [PATCH] Update How To Geek --- recipes/howtogeek.recipe | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes/howtogeek.recipe b/recipes/howtogeek.recipe index da9cb5e25d..33be56f7b2 100644 --- a/recipes/howtogeek.recipe +++ b/recipes/howtogeek.recipe @@ -4,7 +4,7 @@ from calibre.web.feeds.news import BasicNewsRecipe class AdvancedUserRecipe1282101454(BasicNewsRecipe): title = 'How To Geek' language = 'en' - __author__ = 'TonytheBookworm' + __author__ = 'TonytheBookworm, PatStapleton (update 2020-05-20)' description = 'Daily Computer Tips and Tricks' publisher = 'Howtogeek' category = 'PC,tips,tricks' @@ -22,11 +22,11 @@ class AdvancedUserRecipe1282101454(BasicNewsRecipe): remove_tags = [ dict(name='a', attrs={'target': ['_blank']}), dict(name='table', attrs={'id': ['articleTable']}), - dict(name='div', attrs={'class': ['feedflare', 'article-share-widgets', 'related-articles', 'comments']}), + dict(name='div', attrs={'class': ['feedflare', 'article-share-widgets', 'related-articles', 'comments', 'nextup']}), ] feeds = [ - ('Tips', 'http://feeds.howtogeek.com/howtogeek') + ('How-to Geek', 'https://www.howtogeek.com/feed/') ]