@argdown/core
    Preparing search index...

    Interface ISectionConfig

    A section in an Argdown document. Sections can contain other sections as children. They are derived from headings and used to derive groups (clusters) in argument maps.

    interface ISectionConfig {
        arguments?: string[];
        children: ISection[];
        color?: string;
        data?: any;
        endColumn?: number;
        endLine?: number;
        endOffset?: number;
        fontColor?: string;
        heading?: IRuleNode;
        id: string;
        isClosed?: boolean;
        isGroup?: boolean;
        level: number;
        parent?: ISection;
        ranges?: IRange[];
        startColumn?: number;
        startLine?: number;
        startOffset?: number;
        statements?: string[];
        tags?: string[];
        text?: string;
        title?: string;
        type: SECTION;
    }

    Hierarchy (View Summary)

    Index

    Properties

    arguments?: string[]
    children: ISection[]
    color?: string
    data?: any
    endColumn?: number
    endLine?: number
    endOffset?: number
    fontColor?: string
    heading?: IRuleNode
    id: string

    An automatically generated id unique among sections

    isClosed?: boolean
    isGroup?: boolean

    Should this section be used as a group in the argument map?

    If isGroup is undefined, the section will be used as a group if level > maxLevel - groupDepth.

    level: number
    parent?: ISection
    ranges?: IRange[]
    startColumn?: number
    startLine?: number
    startOffset?: number
    statements?: string[]
    tags?: string[]
    text?: string
    title?: string
    type: SECTION