Creation:2026-01-21Last update:2026-01-21

    MarkdownRenderer Component Documentation

    The MarkdownRenderer component renders markdown content with custom components.

    Usage

    tsx
    import { MarkdownRenderer } from "react-intlayer/markdown";const MyComponent = () => (  <MarkdownRenderer># My Title My content</MarkdownRenderer>);

    Props

    Prop Type Description
    children string The markdown content to render.
    components Overrides A map of custom components to use for specific markdown elements.
    options MarkdownOptions Additional options for the markdown renderer.