Implement OrgDoc .tags.

This commit is contained in:
Sergio Martínez Portela 2024-09-01 23:35:33 +02:00
parent e0306bf3a5
commit 570e6bb764

View File

@ -753,10 +753,7 @@ class Headline:
@property
def tags(self):
if isinstance(self.parent, OrgDoc):
return list(self.shallow_tags)
else:
return list(self.shallow_tags) + self.parent.tags
return list(self.shallow_tags) + self.parent.tags
def add_tag(self, tag: str):
self.shallow_tags.append(tag)
@ -2280,6 +2277,13 @@ class OrgDoc:
def path(self):
return self._path
@property
def tags(self) -> list[str]:
for kw in self.keywords:
if kw.key == "FILETAGS":
return kw.value.strip(':').split(':')
return []
## Querying
def get_links(self):
for headline in self.headlines: