vitepress-linkcard
    Preparing search index...

    Interface UrlMetadata

    Metadata extracted from a URL's HTML page using Open Graph Protocol tags and meta tags.

    This interface represents the structured data fetched from a web page to populate the link card display. The metadata is typically extracted from <meta> tags, OGP tags, and other HTML elements.

    interface UrlMetadata {
        description?: string;
        logo?: string;
        title?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown

      Additional metadata properties that may be extracted from the page.

    Index

    Properties

    description?: string

    The description of the page, extracted from <meta name="description"> or <meta property="og:description"> tags.

    logo?: string

    The logo or icon URL for the page, extracted from <meta property="og:image"> or <link rel="icon"> tags.

    title?: string

    The title of the page, extracted from <title> or <meta property="og:title"> tags.