@rogerpence/rp-utils
    Preparing search index...

    Type Alias MarkdownFileResult

    Represents a markdown file with its file system information and parsed content. The frontmatter is untyped (Record<string, any>) until validated.

    type MarkdownFileResult = {
        dirent: DirentInfo;
        markdownObject: { content: string; frontMatter: Record<string, any> };
    }
    Index

    Properties

    dirent: DirentInfo

    File system directory entry information

    markdownObject: { content: string; frontMatter: Record<string, any> }

    Parsed markdown content with untyped frontmatter