Skip to content

Commit

Permalink
Merge pull request #333 from flairNLP/fix_i_news
Browse files Browse the repository at this point in the history
Fix `iNews` parser
  • Loading branch information
MaxDall authored Mar 7, 2024
2 parents 457f9ca + ae1cc42 commit 995f278
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fundus/publishers/uk/i_news.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class INewsParser(ParserProxy):
class V1(BaseParser):
_summary_selector = CSSSelector("article > h2")
_paragraph_selector = CSSSelector("article > div.article-content > p")
_paragraph_selector = CSSSelector("article div.article-content p")

@attribute
def body(self) -> ArticleBody:
Expand Down

0 comments on commit 995f278

Please sign in to comment.