A Detail component is commonly used to render markdown with an optional metadata side panel on the right.
The markdown renderer is currently very bare bones and does not have good support for most fancy markdown features. This is actively being worked on.
import { Detail } from '@vicinae/api';export default function MyCommand() { return <Detail markdown={'# Hello world!'} />;} Copy
import { Detail } from '@vicinae/api';export default function MyCommand() { return <Detail markdown={'# Hello world!'} />;}
A Detail component is commonly used to render markdown with an optional metadata side panel on the right.
Remarks
The markdown renderer is currently very bare bones and does not have good support for most fancy markdown features. This is actively being worked on.
Example