markmv - v1.39.2
    Preparing search index...

    Interface ConvertOperationOptions

    Configuration options specific to convert operations.

    Extends base operation options with convert-specific settings for transforming link formats and path resolution styles across markdown files.

    interface ConvertOperationOptions {
        dryRun?: boolean;
        verbose?: boolean;
        force?: boolean;
        pathResolution?: "absolute" | "relative";
        basePath?: string;
        linkStyle?: "wikilink" | "markdown" | "claude" | "combined";
        recursive?: boolean;
    }

    Hierarchy (View Summary)

    Index
    dryRun?: boolean

    Show what would be changed without making changes

    verbose?: boolean

    Show detailed output

    force?: boolean

    Force operation even if conflicts exist

    pathResolution?: "absolute" | "relative"

    Target path resolution type

    basePath?: string

    Base path for relative path calculations

    linkStyle?: "wikilink" | "markdown" | "claude" | "combined"

    Target link style format

    recursive?: boolean

    Whether to process files recursively