From a56a063d648c39669292dae49501a010aee0ae11 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 11 Dec 2009 19:49:46 -0700 Subject: [PATCH] Update Joel on Software recipe --- resources/recipes/joelonsoftware.recipe | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/resources/recipes/joelonsoftware.recipe b/resources/recipes/joelonsoftware.recipe index fa79435b47..3c18cc755b 100644 --- a/resources/recipes/joelonsoftware.recipe +++ b/resources/recipes/joelonsoftware.recipe @@ -15,10 +15,19 @@ class Joelonsoftware(BasicNewsRecipe): language = 'en' no_stylesheets = True - use_embedded_content = True + use_embedded_content = True oldest_article = 60 - + + cover_url = 'http://www.joelonsoftware.com/RssJoelOnSoftware.jpg' + + extra_css = ''' + h1{font-size: x-small; color:#BF3306;} + h2{ color:#046380; font-size: large;} + .date{ color:#046380; font-size: x-small;} + .author{ color:#046380; font-size: small;} + body{font-family:Georgia,serif;font-size: small;} + ''' html2lrf_options = [ '--comment' , description , '--category' , 'blog,software,news' @@ -26,3 +35,5 @@ class Joelonsoftware(BasicNewsRecipe): ] feeds = [(u'Articles', u'http://www.joelonsoftware.com/rss.xml')] + +