@mermaid-lint/core
    Preparing search index...

    Interface Block

    A single Mermaid diagram extracted from a source document, with the location of its opening fence and the raw diagram body.

    interface Block {
        body: string;
        col: number;
        line: number;
        path: string;
        type: string;
    }
    Index

    Properties

    Properties

    body: string

    Raw diagram source. For indented fences, body lines retain the source indentation prefix. The sentinel '__UNCLOSED_FENCE__' marks a fence with no closing marker.

    col: number

    1-indexed column of the opening fence.

    line: number

    1-indexed line of the opening fence (or line 1 for whole-file .mmd).

    path: string

    Source file path the block came from.

    type: string

    Detected diagram type (e.g. 'flowchart', 'sequenceDiagram', 'unknown').