aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/Content.tsx
blob: 3a7af2f8689e911f7a4784b30929ca24a8f4b7c4 (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
import React from 'react';
import html from 'remark-html';
import parse from 'remark-parse';
import remark2react from 'remark-react';
import unified from 'unified';

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

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

  const contents: React.ReactNode = processor.processSync(markdown).contents;
  return <>{contents}</>;
};

export default Content;