@karmaniverous/jeeves-watcher
    Preparing search index...

    Interface ExtractedText

    Result of extracting text and structured data from a file.

    interface ExtractedText {
        frontmatter?: Record<string, unknown>;
        json?: Record<string, unknown>;
        text: string;
    }
    Index

    Properties

    frontmatter?: Record<string, unknown>

    Extracted YAML frontmatter (Markdown).

    json?: Record<string, unknown>

    Parsed JSON object (JSON files).

    text: string

    Extracted plain text content.