aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/components/Content/index.tsx
blob: 75360bb6bf48d3d2b952f1888096a219df39c33d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import React from 'react';
import html from 'remark-html';
import parse from 'remark-parse';
import remark2react from 'remark-react';
import unified from 'unified';

import BlockQuoteTag from './BlockQuoteTag';
import ImageTag from './ImageTag';
import PreTag from './PreTag';

type Props = { markdown: string };
const Content: React.FC<Props> = ({ markdown }: Props) => {
  const content = unified()
    .use(parse)
    .use(html)
    .use(remark2react, {
      remarkReactComponents: {
        img: ImageTag,
        pre: PreTag,
        blockquote: BlockQuoteTag,
      },
    })
    .processSync(markdown).result;

  return <>{content}</>;
};

export default Content;