INNER CODE UNIT · Python
embedded_files_index
mfarragher/obsidiantools · obsidiantools/api.py:259
def embedded_files_index(self, value) -> dict[str, list[str]]:
self._embedded_files_index = value
@property
def math_index(self) -> dict[str, list[str]]:
"""dict: note name (k) to list of LaTeX math string (v). v is [] if
k has no LaTeX."""
return self._math_index
@math_index.setter
def math_index(self, value) -> dict[str, list[str]]:
self._math_index = value
@property
def md_links_index(self) -> dict[str, list[str]]:
"""dict of lists: filename (k) to lists (v). v is [] if k
has no markdown links."""
return self._md_links_index