| 22 | import { WIKI_REF_RE, normalizeBareSlugRefs, parseWikiRef } from "./wiki-ref"; |
| 23 | |
| 24 | export interface BlockRefSpec { |
| 25 | key: string; // collectRefs 口径 key:path#anchor(anchor 不含 ^) |
| 26 | path: string; |
| 27 | anchor: string; // 不含 ^ |
| 28 | } |
| 29 | |
| 30 | export interface CitationVerifyResult { |
| 31 | brokenAnchors: string[]; // 锚点/文件确实不存在 |
nothing calls this directly
no outgoing calls
no test coverage detected