markmv - v1.26.2
    Preparing search index...

    Interface FileMetadata

    Metadata extracted from markdown file frontmatter.

    Used for organizing and presenting files in generated indexes.

    interface FileMetadata {
        title?: string;
        description?: string;
        category?: string;
        order?: number;
        tags?: string[];
    }
    Index

    Properties

    title?: string

    Document title from frontmatter

    description?: string

    Document description from frontmatter

    category?: string

    Category for grouping documents

    order?: number

    Numeric order for sorting within groups

    tags?: string[]

    Tags associated with the document