Saxonberg Server API
    Preparing search index...

    Type Alias MmlNode

    MmlNode:
        | { kind: "text"; text: string }
        | {
            attrs: Record<string, string>;
            children: MmlNode[];
            kind: "tag";
            tag: string;
        }