mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-08-11 09:13:57 -04:00
Make processing of <description> tag default to HTML in web2lrf
This commit is contained in:
parent
c64b39ee95
commit
21b256018d
@ -27,7 +27,7 @@ class DefaultProfile(object):
|
|||||||
url = '' # The URL of the website
|
url = '' # The URL of the website
|
||||||
title = 'Default Profile' # The title to use for the LRF file
|
title = 'Default Profile' # The title to use for the LRF file
|
||||||
max_articles_per_feed = 10 # Maximum number of articles to download from each feed
|
max_articles_per_feed = 10 # Maximum number of articles to download from each feed
|
||||||
html_description = False # If True process the <description> element of the feed as HTML
|
html_description = True # If True process the <description> element of the feed as HTML
|
||||||
oldest_article = 7 # How many days old should the oldest article downloaded from the feeds be?
|
oldest_article = 7 # How many days old should the oldest article downloaded from the feeds be?
|
||||||
max_recursions = 1 # Number of levels of links to follow
|
max_recursions = 1 # Number of levels of links to follow
|
||||||
max_files = 3000 # Maximum number of files to download
|
max_files = 3000 # Maximum number of files to download
|
||||||
@ -330,7 +330,6 @@ class FullContentProfile(DefaultProfile):
|
|||||||
|
|
||||||
max_recursions = 0
|
max_recursions = 0
|
||||||
article_counter = 0
|
article_counter = 0
|
||||||
html_description = True
|
|
||||||
|
|
||||||
|
|
||||||
def build_index(self):
|
def build_index(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user