aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/components/Content/index.tsx
blob: e40188093c398842808ab02d7f18f2eb6e9be646 (plain) (tree)
1
2
3
4
5
6
7
8
9
                          
                                   
                               
                                 
                                        

                              
                                    
                                            

                                  
 
                                  
                                                           
                           
               
                
              


                              
                    
                     
                                  
        

                                  
 
                        


                       
import React from 'react';
import gemoji from 'remark-gemoji';
import html from 'remark-html';
import parse from 'remark-parse';
import remark2react from 'remark-react';
import unified from 'unified';

import AnchorTag from './AnchorTag';
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(gemoji)
    .use(html)
    .use(remark2react, {
      remarkReactComponents: {
        img: ImageTag,
        pre: PreTag,
        a: AnchorTag,
        blockquote: BlockQuoteTag,
      },
    })
    .processSync(markdown).result;

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

export default Content;