RSX Code Reference
    Preparing search index...

    Interface MarkdownTableCell

    Parsed Markdown table cell content and whole-cell inline styling.

    interface MarkdownTableCell {
        emphasis: MarkdownTextEmphasis;
        isCode: boolean;
        text: string;
    }
    Index

    Whole-cell emphasis inferred from inline Markdown wrappers.

    isCode: boolean

    True when the whole cell is wrapped as inline code.

    text: string

    Text content with common inline Markdown markers removed.