Interface InlineFormatMention

A mention of another blog.

interface InlineFormatMention {
    blog: BlogInfo;
    end: number;
    start: number;
    type: "mention";
}

Hierarchy

  • InlineFormatBase
    • InlineFormatMention

Properties

Properties

blog: BlogInfo

The mentioned blog.

end: number

The ending index of the formatting range (inclusive).

start: number

The starting index of the formatting range (inclusive).

type