> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lyzn.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Markdown

> Renders rich text from markdown content

# Markdown

The `Markdown` component renders Markdown strings as rich HTML. It provides a safe way to display formatted content.

## Usage

```jsx theme={null}
<Markdown content="# Hello\n\nThis is **markdown** content." />
```

## Props

<ResponseField name="content" type="string" required>
  The markdown string to render.
</ResponseField>

## Examples

### Dynamic Content

```jsx theme={null}
<Card>
  <Markdown content={article.body} />
</Card>
```
