diff --git a/src/calibre/web/feeds/news.py b/src/calibre/web/feeds/news.py index 90c33d4bcd..3509a53d52 100644 --- a/src/calibre/web/feeds/news.py +++ b/src/calibre/web/feeds/news.py @@ -571,7 +571,7 @@ class BasicNewsRecipe(Recipe): an ad page, return the HTML of the real page. Otherwise return None. - `soup`: A `BeautifulSoup `_ + `soup`: A `BeautifulSoup `_ instance containing the downloaded :term:`HTML`. ''' return None @@ -613,7 +613,7 @@ class BasicNewsRecipe(Recipe): It can be used to do arbitrarily powerful pre-processing on the :term:`HTML`. It should return `soup` after processing it. - `soup`: A `BeautifulSoup `_ + `soup`: A `BeautifulSoup `_ instance containing the downloaded :term:`HTML`. ''' return soup @@ -625,7 +625,7 @@ class BasicNewsRecipe(Recipe): It can be used to do arbitrarily powerful post-processing on the :term:`HTML`. It should return `soup` after processing it. - :param soup: A `BeautifulSoup `_ instance containing the downloaded :term:`HTML`. + :param soup: A `BeautifulSoup `_ instance containing the downloaded :term:`HTML`. :param first_fetch: True if this is the first page of an article. '''