mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
29 lines
922 B
Plaintext
29 lines
922 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1278347258(BasicNewsRecipe):
|
|
title = u'Anchorage Daily News'
|
|
__author__ = 'rty'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
auto_cleanup = True
|
|
|
|
feeds = [(u'Alaska News', u'http://www.adn.com/rss-feeds/feed/all'),
|
|
(u'Politics', u'http://www.adn.com/rss-feeds/feed/politics'),
|
|
]
|
|
description = ''''Alaska's Newspaper'''
|
|
publisher = 'http://www.adn.com'
|
|
category = 'news, Alaska, Anchorage'
|
|
language = 'en'
|
|
extra_css = '''
|
|
p{font-weight: normal;text-align: justify}
|
|
'''
|
|
remove_javascript = True
|
|
use_embedded_content = False
|
|
no_stylesheets = True
|
|
language = 'en'
|
|
encoding = 'utf-8'
|
|
conversion_options = {'linearize_tables': True}
|
|
masthead_url = 'http://media.adn.com/includes/assets/images/adn_logo.2.gif'
|
|
|