Interface RichTextAnchorLink

A link to an anchor on the same page. Subtype of RichText.

interface RichTextAnchorLink {
    @type: "richTextAnchorLink";
    anchor_name: string;
    text: RichText;
    url: string;
}

Properties

@type: "richTextAnchorLink"
anchor_name: string

The anchor name. If the name is empty, the link must bring back to top.

text: RichText

The link text.

url: string

An HTTP URL, opening the anchor.