impasto
    Preparing search index...

    Interface SplitSectionResult

    Result of splitting a section from the Impasto tree.

    interface SplitSectionResult {
        content: SplitSectionResultSegment;
        contentIndent: SplitSectionResultContentIndent;
        contextAfter: undefined | SplitSectionResultSegment;
        contextBefore: undefined | SplitSectionResultSegment;
        lines: LineElement[];
    }
    Index

    Properties

    The lines that are part of the section.

    Details of the common indentation of the section content lines.

    contextAfter: undefined | SplitSectionResultSegment

    The lines after the section.

    contextBefore: undefined | SplitSectionResultSegment

    The lines before the section.

    lines: LineElement[]

    All content and context lines combined.