crossnote
    Preparing search index...

    Interface CodeChunkData

    interface CodeChunkData {
        code: string;
        id: string;
        next: string | null;
        normalizedInfo: BlockInfo;
        plainResult: string;
        prev: string;
        result: string;
        running: boolean;
    }
    Index

    Properties

    code: string

    code content of the code chunk

    id: string

    id of the code chunk

    next: string | null

    next code chunk

    normalizedInfo: BlockInfo

    code block info (normalized in advance)

    plainResult: string

    result after running code chunk

    prev: string

    previous code chunk

    result: string

    result after formatting according to options['output'] format

    running: boolean

    whether is running the code chunk or not