INNER CODE UNIT · Python
unique_md_links_index
mfarragher/obsidiantools · obsidiantools/api.py:289
def unique_md_links_index(self, value) -> dict[str, list[str]]:
self._unique_md_links_index = value
@property
def tags_index(self) -> dict[str, list[str]]:
"""dict of lists: filename (k) to lists (v). v is [] if k
has no tags."""
return self._tags_index
@tags_index.setter
def tags_index(self, value) -> dict[str, list[str]]:
self._tags_index = value
@property
def nonexistent_notes(self) -> list[str]:
"""list: notes without files, i.e. the notes have backlink(s) but
their md files don't exist yet.