Fix: find links in list tags.

This commit is contained in:
Sergio Martínez Portela 2023-07-30 23:14:29 +02:00
parent cebe979066
commit f11ecd05d6
1 changed files with 2 additions and 0 deletions

View File

@ -733,6 +733,8 @@ class Headline:
for lst in self.get_lists():
for item in lst:
if item.tag:
yield from get_links_from_content(item.tag)
yield from get_links_from_content(item.content)
def get_lines_between(self, start, end):