mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 22:43:31 +02:00
Fix #1388510 [Little typo](https://bugs.launchpad.net/calibre/+bug/1388510)
This commit is contained in:
parent
e4ab7705de
commit
eeed388a5b
1 changed files with 8 additions and 6 deletions
|
|
@ -325,12 +325,14 @@ class BasicNewsRecipe(Recipe):
|
|||
|
||||
#: Ignore duplicates of articles that are present in more than one section.
|
||||
#: A duplicate article is an article that has the same title and/or URL.
|
||||
#: To ignore articles with the same title, set this to:
|
||||
#: ignore_duplicate_articles = {'title'}
|
||||
#: To use URLs instead, set it to:
|
||||
#: ignore_duplicate_articles = {'url'}
|
||||
#: To match on title or URL, set it to:
|
||||
#: ignore_duplicate_articles = {'title', 'url'}
|
||||
#: To ignore articles with the same title, set this to::
|
||||
#: ignore_duplicate_articles = {'title'}
|
||||
#:
|
||||
#: To use URLs instead, set it to::
|
||||
#: ignore_duplicate_articles = {'url'}
|
||||
#:
|
||||
#: To match on title or URL, set it to::
|
||||
#: ignore_duplicate_articles = {'title', 'url'}
|
||||
ignore_duplicate_articles = None
|
||||
|
||||
#: If you set this True, then calibre will use javascript to login to the
|
||||
|
|
|
|||
Loading…
Reference in a new issue