@karmaniverous/jeeves
    Preparing search index...

    Interface ParseManagedResult

    Result of parsing a managed block from file content.

    interface ParseManagedResult {
        beforeContent: string;
        found: boolean;
        managedContent: string;
        sections: ManagedSection[];
        userContent: string;
        versionStamp: VersionStamp | undefined;
    }
    Index

    Properties

    beforeContent: string

    Content before the BEGIN marker.

    found: boolean

    Whether valid markers were found.

    managedContent: string

    Raw managed block content (between markers, excluding markers).

    sections: ManagedSection[]

    Parsed H2 sections within the managed block.

    userContent: string

    Content after the END marker (user content).

    versionStamp: VersionStamp | undefined

    Version stamp from the BEGIN marker, if present.