INNER CODE UNIT · Python

math_index

mfarragher/obsidiantools · obsidiantools/api.py:263

    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

    @md_links_index.setter
    def md_links_index(self, value) -> dict[str, list[str]]:
        self._md_links_index = value

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…