From 5fa154e0757b6023f293789f24929ca97823eaca Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 19 Dec 2020 21:11:05 +0530 Subject: [PATCH] Update Zerohedge Fixes #1908786 [Updated recipe for ZeroHedge](https://bugs.launchpad.net/calibre/+bug/1908786) --- recipes/zerohedge.recipe | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/recipes/zerohedge.recipe b/recipes/zerohedge.recipe index 46fd5dcdd3..d0606eafdc 100644 --- a/recipes/zerohedge.recipe +++ b/recipes/zerohedge.recipe @@ -1,5 +1,8 @@ +# -*- mode: python; coding: utf-8; -*- +# vim: set syntax=python fileencoding=utf-8 + __license__ = 'GPL v3' -__copyright__ = '2011, Darko Miletic ' +__copyright__ = '2011-2020, Darko Miletic ' ''' www.zerohedge.com ''' @@ -14,12 +17,14 @@ class ZeroHedge(BasicNewsRecipe): oldest_article = 10 max_articles_per_feed = 100 no_stylesheets = True - use_embedded_content = True + use_embedded_content = False encoding = 'utf8' publisher = 'zero hedge' category = 'news, USA, world, economy, politics' language = 'en' - masthead_url = 'http://www.zerohedge.com/themes/newsflash/logo.png' + masthead_url = 'https://www.zerohedge.com/images/logo/full.svg' + auto_cleanup = True + auto_cleanup_keep = '//*[@class="main-content"]' publication_type = 'blog' extra_css = 'body{ font-family: sans-serif }'