<MarkdownField>
This Enterprise Edition component allows to render Markdown data as HTML.
import { Show, SimpleShowLayout, TextField } from 'react-admin';
import { MarkdownField } from '@react-admin/ra-markdown';
const PostShow = props => (
<Show {...props}>
<SimpleShowLayout>
<TextField source="title" />
<MarkdownField source="description" />
</SimpleShowLayout>
</Show>
);
Check the ra-markdown
documentation for more details.