markmv - v1.39.2
    Preparing search index...

    Interface GraphOperationOptions

    Configuration options for graph generation operations.

    interface GraphOperationOptions {
        format: GraphOutputFormat;
        output?: string;
        open?: boolean;
        includeExternal?: boolean;
        includeImages?: boolean;
        includeAnchors?: boolean;
        maxDepth?: number;
        baseDir?: string;
        dryRun?: boolean;
        verbose?: boolean;
        force?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Output format for the graph

    output?: string

    Output file path (optional)

    open?: boolean

    Whether to open the generated file

    includeExternal?: boolean

    Include external links in the graph

    includeImages?: boolean

    Include image links in the graph

    includeAnchors?: boolean

    Include anchor links in the graph

    maxDepth?: number

    Maximum depth for dependency traversal

    baseDir?: string

    Base directory for relative path calculations

    dryRun?: boolean

    Show what would be changed without making changes

    verbose?: boolean

    Show detailed output

    force?: boolean

    Force operation even if conflicts exist