markmv - v1.26.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?: "markdown" | "claude" | "combined" | "wikilink";
        recursive?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    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?: "markdown" | "claude" | "combined" | "wikilink"

    Target link style format

    recursive?: boolean

    Whether to process files recursively