markmv - v1.26.2
    Preparing search index...

    Interface IndexableFile

    Represents a markdown file that can be included in an index.

    Contains file path information, extracted metadata, and content for use in index generation.

    interface IndexableFile {
        path: string;
        relativePath: string;
        metadata: FileMetadata;
        content: string;
    }
    Index

    Properties

    path: string

    Absolute path to the file

    relativePath: string

    Path relative to the index generation root

    metadata: FileMetadata

    Extracted frontmatter metadata

    content: string

    Full file content