diff --git a/org_rw/org_rw.py b/org_rw/org_rw.py index c40f0e4..3d2c14d 100644 --- a/org_rw/org_rw.py +++ b/org_rw/org_rw.py @@ -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):