CupThread React Native & Expo SDK - v0.1.0
    Preparing search index...

    Interface MarkdownTextProps

    Props for the MarkdownText lightweight renderer.

    <MarkdownText
    content="### Release Highlights\n- **Faster sync**\n- See [Docs](https://cupthread.com)"
    style={{ fontSize: 15 }}
    />
    interface MarkdownTextProps {
        content: string;
        style?: TextStyle;
    }
    Index
    content: string

    Markdown formatted string content supporting #, ##, ###, - list, **bold**, *italic*, `code`, and [links](url).

    style?: TextStyle

    Optional custom text style overrides applied to rendered paragraph and header texts.