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

    Interface OpenGraphMetadata

    OpenGraph metadata extracted from meta tags.

    Contains metadata from the Open Graph protocol used for rich social sharing. All fields are optional - only present if found in the document.

    interface OpenGraphMetadata {
        title?: string;
        type?: string;
        image?: string;
        url?: string;
        description?: string;
        siteName?: string;
        locale?: string;
        localeAlternate?: string[];
        article?: OpenGraphArticle;
        video?: OpenGraphVideo;
        audio?: OpenGraphAudio;
        images?: OpenGraphImage[];
        book?: OpenGraphBook;
        profile?: OpenGraphProfile;
    }
    Index

    Properties

    title?: string

    Content title

    type?: string

    Content type (article, website, video, etc.)

    image?: string

    Preview image URL (primary image)

    url?: string

    Canonical URL

    description?: string

    Content description

    siteName?: string

    Site name

    locale?: string

    Content locale (e.g., en_US)

    localeAlternate?: string[]

    Alternate locales

    Optionalarticle

    Article-specific metadata (if type is article)

    Video metadata (if type is video or video present)

    Audio metadata (if audio present)

    images?: OpenGraphImage[]

    All images with full metadata (if multiple images)

    Book metadata (if type is book)

    Profile metadata (if type is profile)