markmv - v1.26.2
    Preparing search index...

    Interface FileNode

    Represents a node in the markdown file dependency graph.

    Each node contains metadata about a markdown file and its relationships to other files through links and references. Used for dependency analysis, topological sorting, and impact assessment during file operations.

    interface FileNode {
        path: string;
        data: ParsedMarkdownFile;
        dependencies: Set<string>;
        dependents: Set<string>;
    }
    Index

    Properties

    path: string

    Absolute file path

    Parsed markdown data

    dependencies: Set<string>

    Files this file directly depends on

    dependents: Set<string>

    Files that directly depend on this file