- Add resolveLinksFromContent() to parse wiki links from content and resolve them - Add getBacklinks() to find all entries that link to a target entry - Import parseWikiLinks from utils for content parsing - Export new types: ResolvedLink, Backlink - Add comprehensive tests for new functionality (27 tests total)
7 lines
162 B
TypeScript
7 lines
162 B
TypeScript
export { LinkResolutionService } from "./link-resolution.service";
|
|
export type {
|
|
ResolvedEntry,
|
|
ResolvedLink,
|
|
Backlink,
|
|
} from "./link-resolution.service";
|