RSX Code Reference
    Preparing search index...

    Interface MarkdownTextBlock

    Parsed Markdown text line block.

    interface MarkdownTextBlock {
        emphasis: MarkdownTextEmphasis;
        headingType: MarkdownTextHeadingType;
        kind: "text";
        text: string;
    }
    Index

    Inline emphasis inferred from the line wrapper.

    Heading presentation inferred from the line marker.

    kind: "text"

    Discriminator for text blocks.

    text: string

    Text content with block markers removed.