@alvincrespo/hashnode-content-converter - v0.2.2
    Preparing search index...

    Interface ImageProcessingResult

    Result of image processing operation. Contains updated markdown and detailed statistics.

    interface ImageProcessingResult {
        errors: ImageProcessingError[];
        imagesDownloaded: number;
        imagesProcessed: number;
        imagesSkipped: number;
        markdown: string;
    }
    Index

    Properties

    Errors encountered during processing. Does not include skipped images (those are counted separately).

    imagesDownloaded: number

    Number of images successfully downloaded.

    imagesProcessed: number

    Total number of images found in markdown.

    imagesSkipped: number

    Number of images that already existed (skipped download).

    markdown: string

    Markdown content with CDN URLs replaced by local relative paths.