markmv - v1.26.2
    Preparing search index...

    Class LinkConverter

    Core class for converting markdown link formats and path resolution.

    Provides comprehensive link conversion functionality including path resolution changes (absolute/relative) and link style transformations between different markdown syntaxes.

    Basic link conversion

    const converter = new LinkConverter();

    // Convert all links to relative paths and wikilink style
    const result = await converter.convertFile('document.md', {
    pathResolution: 'relative',
    linkStyle: 'wikilink',
    basePath: process.cwd()
    });
    Index

    Constructors

    Methods