@argdown/core
    Preparing search index...

    Interface ISelectionSettings

    interface ISelectionSettings {
        excludeArguments?: string[];
        excludeStatements?: string[];
        ignoreIsInMap?: boolean;
        includeStatements?: string[];
        selectedSections?: string[];
        selectedTags?: string[];
        selectElementsWithoutSection?: boolean;
        selectElementsWithoutTag?: boolean;
    }
    Index

    Properties

    excludeArguments?: string[]

    Titles of arguments that should not be in the map.

    excludeStatements?: string[]

    Titles of statements that should be excluded from the map.

    ignoreIsInMap?: boolean

    If true, the isInMap data flag is ignored.

    includeStatements?: string[]

    Titles of statements that should be represented as nodes in the map.

    This does not automatically exclude all other statements from being put into the map as nodes. It works similarly to using the isInMap:true flag for the included statements. Which other statements are selected depends on the other selection methods used.

    selectedSections?: string[]

    A list of headings that can be used to only selected arguments and statements from certain sections in the texts.

    selectedTags?: string[]

    Can be used to only select arguments and statements with certain tags

    selectElementsWithoutSection?: boolean

    Should arguments and statements that are defined under no heading be excluded from the selection? This is only relevant if [[ISelectionSettings.selectedSections]] is used.

    selectElementsWithoutTag?: boolean

    Should arguments and statements without tags be excluded from the selection? This is only relevant, if [[ISelectionSettings.selectedTags]] is used.