ISPO SDK
    Preparing search index...

    Interface SpecEditSectionInput

    Markdown

    One proposed per-section spec edit (mirrors the host's SpecEditSection).

    interface SpecEditSectionInput {
        afterHtml: string;
        beforeHtml: string;
        id: string;
        sourcePath: string;
        title: string;
    }
    Index
    afterHtml: string

    The edited fragment HTML from the editor's getHTML().

    beforeHtml: string

    The fragment HTML as the editor loaded it (pre-edit).

    id: string

    Manifest section id (e.g. sec-1).

    sourcePath: string

    Manifest source path, relative to docs/spec/ (e.g. sections/sec-1.html).

    title: string

    Human-readable section title, for the diff header.