Trilium Backend API
    Preparing search index...

    Interface TagSourceCodeLocation

    interface TagSourceCodeLocation {
        endCol: number;
        endLine: number;
        endOffset: number;
        endTag?: SourceCodeLocation;
        startCol: number;
        startLine: number;
        startOffset: number;
        startTag?: SourceCodeLocation;
    }

    Hierarchy (View Summary)

    Index

    Properties

    endCol: number

    One-based column index of the last character. Points directly after the last character.

    endLine: number

    One-based line index of the last character.

    endOffset: number

    Zero-based last character index. Points directly after the last character.

    startCol: number

    One-based column index of the first character.

    startLine: number

    One-based line index of the first character.

    startOffset: number

    Zero-based first character index.