interface Tag {
    inLink: boolean;
    inRawBlock: boolean;
    raw: string;
    text: string;
    type: "html" | "text";
}

Hierarchy (view full)

Properties

inLink: boolean
inRawBlock: boolean
raw: string
text: string
type: "html" | "text"