Markdown link.

interface Link {
    children: PhrasingContent[];
    data?: LinkData;
    position?: "/home/runner/work/astro-node-fastify/astro-node-fastify/node_modules/@types/unist/index".Position;
    title?: null | string;
    type: "link";
    url: string;
}

Hierarchy (view full)

Properties

children: PhrasingContent[]

Children of link.

data?: LinkData

Data associated with the mdast link.

Position of a node in a source document.

Nodes that are generated (not in the original source document) must not have a position.

title?: null | string

Advisory information for the resource, such as would be appropriate for a tooltip.

type: "link"

Node type of mdast link.

url: string

URL to the referenced resource.