mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-28 13:24:10 +01:00
45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
|
|
import { memo } from 'react';
|
||
|
|
import remarkGfm from 'remark-gfm';
|
||
|
|
import remarkMath from 'remark-math';
|
||
|
|
import rehypeKatex from 'rehype-katex';
|
||
|
|
import supersub from 'remark-supersub';
|
||
|
|
import ReactMarkdown from 'react-markdown';
|
||
|
|
import rehypeHighlight from 'rehype-highlight';
|
||
|
|
import type { PluggableList } from 'unified';
|
||
|
|
import { langSubset } from '~/utils';
|
||
|
|
import { code, p } from './Markdown';
|
||
|
|
|
||
|
|
const MarkdownLite = memo(({ content = '' }: { content?: string }) => {
|
||
|
|
const rehypePlugins: PluggableList = [
|
||
|
|
[rehypeKatex, { output: 'mathml' }],
|
||
|
|
[
|
||
|
|
rehypeHighlight,
|
||
|
|
{
|
||
|
|
detect: true,
|
||
|
|
ignoreMissing: true,
|
||
|
|
subset: langSubset,
|
||
|
|
},
|
||
|
|
],
|
||
|
|
];
|
||
|
|
|
||
|
|
return (
|
||
|
|
<ReactMarkdown
|
||
|
|
remarkPlugins={[supersub, remarkGfm, [remarkMath, { singleDollarTextMath: true }]]}
|
||
|
|
rehypePlugins={rehypePlugins}
|
||
|
|
linkTarget="_new"
|
||
|
|
components={
|
||
|
|
{
|
||
|
|
code,
|
||
|
|
p,
|
||
|
|
} as {
|
||
|
|
[nodeType: string]: React.ElementType;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
>
|
||
|
|
{content}
|
||
|
|
</ReactMarkdown>
|
||
|
|
);
|
||
|
|
});
|
||
|
|
|
||
|
|
export default MarkdownLite;
|