mwg API
    Preparing search index...

    Interface MwlNode

    interface MwlNode {
        attributeLocations?: Readonly<Record<string, MwlLocation>>;
        attributes: Readonly<Record<string, string>>;
        children: readonly MwlNode[];
        gettext?: readonly string[];
        location: MwlLocation;
        tag: string;
        valueLocations?: Readonly<Record<string, MwlLocation>>;
    }
    Index
    attributeLocations?: Readonly<Record<string, MwlLocation>>

    Exact source location of each authored attribute key, when parsed from text.

    attributes: Readonly<Record<string, string>>
    children: readonly MwlNode[]
    gettext?: readonly string[]

    Names of the attributes that carried the gettext marker _("..."). Present (possibly empty) on nodes parsed from text, so the compiler can extract exactly the author-marked display strings; absent on nodes built programmatically by a converter.

    location: MwlLocation
    tag: string
    valueLocations?: Readonly<Record<string, MwlLocation>>

    Exact source location where each authored attribute value starts, when parsed from text.