RSX Code Reference
    Preparing search index...

    Interface MarkdownTableBlock

    Parsed Markdown table block.

    interface MarkdownTableBlock {
        alignments: MarkdownTableColumnAlignment[];
        headers: MarkdownTableCell[];
        kind: "table";
        rows: MarkdownTableCell[][];
    }
    Index

    Column alignments parsed from the Markdown separator row.

    Header cells parsed from the first table row.

    kind: "table"

    Discriminator for table blocks.

    Body rows parsed after the separator row.