Member Junction
    Preparing search index...

    A rendered MARKDOWN panel — a rich, formatted card (headings, lists, code, links) for illustrative content that outgrows a sticky note. Width is explicit (the panel's column width); height is content-driven, optionally capped by H (overflow clips).

    interface WhiteboardMarkdownItem {
        Author: WhiteboardAuthor;
        H?: number;
        ID: string;
        Kind: "markdown";
        Markdown: string;
        W: number;
        X: number;
        Y: number;
        Z: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    Who placed the item. Drives the ownership chrome (chips / violet vs slate-amber).

    H?: number

    Optional max height in px; content beyond it is clipped. Omitted = content-driven.

    ID: string

    Stable item id (e.g. sticky-3) — referenced by connectors, deltas and agent tools.

    Kind: "markdown"
    Markdown: string

    The markdown source. Rendered SAFELY (sanitized — never raw HTML passthrough).

    W: number

    Panel width in px (required — markdown always renders in an explicit column).

    X: number
    Y: number
    Z: number

    Render order (higher renders on top). Assigned by the engine.