impasto
    Preparing search index...

    Interface SplitSectionResult

    Result of splitting a section from the Impasto tree.

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

    Properties

    The lines that are part of the section.

    Details of the common indentation of the section content lines.

    contextAfter: SplitSectionResultSegment | undefined

    The lines after the section.

    contextBefore: SplitSectionResultSegment | undefined

    The lines before the section.

    lines: LineElement[]

    All content and context lines combined.