Refine AI
This is documentation for Refine 4.xx.xx, which is no longer actively maintained.
For up-to-date documentation, see the latest version (5.xx.xx).
Version: 4.xx.xx
Swizzle Ready
Markdown
This field lets you display markdown content. It supports GitHub Flavored Markdown.
Good to know:
You can swizzle this component to customize it with the Refine CLI
Usage
Let's see how we can use <MarkdownField> in a show page.
localhost:3000/posts/show/123
Live previews only work with the latest documentation.
import { useShow } from "@refinedev/core";
import {
  Show,
  MarkdownField,
} from "@refinedev/chakra-ui";
import { Heading, Text } from "@chakra-ui/react";
const PostShow: React.FC = () => {
  const { queryResult } = useShow<IPost>();
  const { data, isLoading } = queryResult;
  const record = data?.data;
  return (
    <Show isLoading={isLoading}>
      <Heading as="h5" size="sm">
        Id
      </Heading>
      <Text mt={2}>{record?.id}</Text>
      <Heading as="h5" size="sm" mt={4}>
        Content
      </Heading>
      <MarkdownField value={record?.content} />
    </Show>
  );
};
interface IPost {
  id: number;
  content: string;
}
Was this helpful?
API Reference
Properties
| Property | Type | Description | 
|---|---|---|
value  |  | Markdown data to render  | 
Was this helpful?