Magpie HTML - v0.1.3
    Preparing search index...

    Interface ExtractedContent

    Successfully extracted content.

    interface ExtractedContent {
        success: true;
        title: string;
        content: string;
        textContent: string;
        excerpt: string;
        byline?: string;
        siteName?: string;
        lang?: string;
        dir?: "ltr" | "rtl";
        publishedTime?: string;
        length: number;
        wordCount: number;
        readingTime: number;
        readerable: boolean;
        extractionTime: number;
    }
    Index

    Properties

    success: true

    Extraction succeeded

    title: string

    Article title

    content: string

    Cleaned HTML content

    textContent: string

    Plain text content (HTML stripped)

    excerpt: string

    Article excerpt/summary

    byline?: string

    Author byline

    siteName?: string

    Site name

    lang?: string

    Content language code (e.g., 'en', 'de')

    dir?: "ltr" | "rtl"

    Text direction

    publishedTime?: string

    Published time (ISO 8601 string if available)

    length: number

    Character count of text content

    wordCount: number

    Word count

    readingTime: number

    Estimated reading time in minutes

    readerable: boolean

    Whether content passed readability check

    extractionTime: number

    Extraction time in milliseconds