Trevixal API
    Preparing search index...

    Interface DocumentOutlineOptions

    interface DocumentOutlineOptions {
        ariaLabel?: string;
        blockKinds?: Readonly<Record<string, OutlineBlockKind>>;
        container: HTMLElement;
        emptyLabel?: string;
        headingName?: string;
        onNavigate?: (entry: OutlineEntry) => void;
        untitledLabel?: string;
    }
    Index
    ariaLabel?: string
    blockKinds?: Readonly<Record<string, OutlineBlockKind>>

    Non-heading block types worth showing, keyed by node type name. Defaults to code blocks, quotes, tables, lists and horizontal rules. Pass {} for a headings-only outline.

    container: HTMLElement

    Where the sidebar is appended.

    emptyLabel?: string
    headingName?: string

    Heading node type (default "heading").

    onNavigate?: (entry: OutlineEntry) => void

    Called after the caret moves into a clicked row.

    untitledLabel?: string