class AdvancedUserRecipe1289709253(BasicNewsRecipe): title = u'test' oldest_article = 7 max_articles_per_feed = 100 use_embedded_content = False no_stylesheets = True remove_javascript = True extra_css = '.headline {font-size: x-large;} \n .fact { padding-top: 10pt }' feeds = (u'News', u'http://www.mensfitness.com/rss_global/') def preprocess_html(self, soup): for alink in soup.findAll('a'): if alink.string is not None: tstr = alink.string alink.replaceWith(tstr) return soup def print_version(self, url): return url + "?print=1"