markmv - v1.26.2
    Preparing search index...

    Interface ParsedMarkdownFile

    Represents a completely parsed markdown file with all extracted metadata.

    Contains all links, references, and dependency information needed for intelligent file operations and cross-reference management.

    Using parsed file data

    const parsedFile: ParsedMarkdownFile = await parser.parseFile('document.md');

    console.log(`File: ${parsedFile.filePath}`);
    console.log(`Links: ${parsedFile.links.length}`);
    console.log(`Dependencies: ${parsedFile.dependencies.length}`);
    console.log(`Dependents: ${parsedFile.dependents.length}`);
    interface ParsedMarkdownFile {
        filePath: string;
        links: MarkdownLink[];
        references: LinkReference[];
        dependencies: string[];
        dependents: string[];
    }
    Index

    Properties

    filePath: string

    Absolute file path

    links: MarkdownLink[]

    All links found in the file

    references: LinkReference[]

    Reference-style link definitions

    dependencies: string[]

    Files that this file depends on (links to)

    dependents: string[]

    Files that depend on this file (link to this file)