Normalize a path or link to a textual path.
(path: string | Link)
| 124 | |
| 125 | /** Normalize a path or link to a textual path. */ |
| 126 | private pathkey(path: string | Link): string { |
| 127 | if (path instanceof Link) return path.obsidianLink(); |
| 128 | else return path; |
| 129 | } |
| 130 | |
| 131 | /** Attempts to resolve the source to load given a path or link to a markdown section. */ |
| 132 | private async resolveSource( |