Skip to main content

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

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

Usage

<Markdown content="# Hello\n\nThis is **markdown** content." />

Props

content
string
required
The markdown string to render.

Examples

Dynamic Content

<Card>
  <Markdown content={article.body} />
</Card>