DemoVaultCoverageChecker.findUnreachableNotes method
DemoVaultCoverageChecker › findUnreachableNotes
Finds notes that cannot be reached from the start note by following Markdown links between notes.The walk starts at DemoVaultCoverageCheckerFindUnreachableNotesParams.startNote and follows every
[Text](<./NN Name.md>) link outside a code fence, transitively. A note nothing links to is one a reader can only find by browsing the file list — which is exactly what the grouped index in the start note is meant to replace. When the start note itself is missing, EVERY note is unreachable, because there is nowhere to start from.Signature:
findUnreachableNotes(params: DemoVaultCoverageCheckerFindUnreachableNotesParams): string[]Parameters:
| Parameter | Type | Description |
|---|---|---|
| params | DemoVaultCoverageCheckerFindUnreachableNotesParams | The parameters for the walk. |
Returns: string[] — The relative paths of the unreachable notes.