@eagleoutice/flowr - v2.15.8
    Preparing search index...

    Interface PlaygroundLinkParts

    everything a link can say about the page it opens; whatever is left out the page fills in itself

    interface PlaygroundLinkParts {
        at?: string;
        base?: string;
        code?: string;
        collapsed?: readonly PlaygroundBox[];
        config?: readonly string[];
        dim?: boolean;
        forward?: boolean;
        marks?: readonly PlaygroundMark[];
        repl?: number;
        replOpen?: boolean;
        split?: number;
        wholeSlice?: boolean;
    }
    Index
    at?: string

    where the cursor lands, as a slicing criterion (12@sum, 12:5) or a bare line

    base?: string

    another deployment of the page, for a local build or a fork

    code?: string

    the script the page opens with; left out, the page keeps its own sample

    collapsed?: readonly PlaygroundBox[]

    the boxes that open folded away, for whatever the example is not about

    config?: readonly string[]

    the configuration keys that differ from the defaults, as a.b.c=<json>

    dim?: boolean

    the lines outside the slice step back, as the dim the rest box does on the page

    forward?: boolean

    slice forward from the criterion rather than backward

    marks?: readonly PlaygroundMark[]

    what the page marks when it opens, and what alt-click toggles from there on

    repl?: number
    replOpen?: boolean

    the repl is open, rather than folded away under the panes

    split?: number

    how wide the code pane is, in percent, and how tall the repl is, in pixels

    wholeSlice?: boolean

    the whole slice is shown, rather than as much of it as the window has room for