vitepress-linkcard
    Preparing search index...

    Interface CardDomRenderOptions

    Options passed to the card DOM renderer function.

    This interface provides all the necessary information to render a link card, including the URL, display preferences, and styling options.

    interface CardDomRenderOptions {
        classPrefix?: string;
        href: string;
        linkTitle: string;
        target: ATarget;
    }
    Index

    Properties

    classPrefix?: string

    CSS class name prefix for the card DOM elements.

    href: string

    The URL to link to.

    linkTitle: string

    The title text to display on the link (typically from the markdown link text).

    target: ATarget

    Where to display the linked URL when clicked.