Riksdagsmonitor Intelligence Platform โ€” API Documentation - v1.0.30
    Preparing search index...

    One ```mermaid block extracted from a Markdown source file.

    • startLineNumber is 1-indexed and points at the opening ```mermaid line.
    • bodyStartLineNumber is 1-indexed and points at the first line inside the block (i.e. startLineNumber + 1). This is the anchor Mermaid uses for "Parse error on line N" diagnostics.
    • endLineNumber is 1-indexed and points at the closing ``` line; when the block is unclosed it points at the implied end (next opening fence line or end-of-input + 1).
    • body is the raw text between the opening and the closing fences, exactly as fed to mermaid.parse(). No trailing newline.
    interface MermaidBlock {
    ย ย ย ย startLineNumber: number;
    ย ย ย ย bodyStartLineNumber: number;
    ย ย ย ย endLineNumber: number;
    ย ย ย ย body: string;
    ย ย ย ย closed: boolean;
    }
    Index
    startLineNumber: number
    bodyStartLineNumber: number
    endLineNumber: number
    body: string
    closed: boolean