From 4bcc6cfbff19c930f96b19bfefde0758c8efaba2 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 15 Jul 2009 16:25:36 -0600 Subject: [PATCH] Updated recipe for elektrolese --- src/calibre/web/feeds/recipes/recipe_elektrolese.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/calibre/web/feeds/recipes/recipe_elektrolese.py b/src/calibre/web/feeds/recipes/recipe_elektrolese.py index 46101f3a39..622190a286 100644 --- a/src/calibre/web/feeds/recipes/recipe_elektrolese.py +++ b/src/calibre/web/feeds/recipes/recipe_elektrolese.py @@ -19,7 +19,7 @@ class elektrolese(BasicNewsRecipe): oldest_article = 14 max_articles_per_feed = 50 no_stylesheets = True - #html2epub_options = 'linearize_tables = True\nbase_font_size2=14' + conversion_options = {'linearize_tables':True} encoding = 'utf-8' @@ -27,9 +27,12 @@ class elektrolese(BasicNewsRecipe): filter_regexps = [r'ad\.doubleclick\.net'] remove_tags = [dict(name='div', attrs={'class':'bannerSuperBanner'}), - dict(id='comments')] + dict(id='comments'), + dict(id='Navbar1')] feeds = [ (u'electrolese', u'http://elektrolese.blogspot.com/feeds/posts/default?alt=rss') ] + +