added markdown github extension and latex sintax to the user message
This commit is contained in:
parent
aafb14add3
commit
bb5dae166f
1 changed files with 7 additions and 1 deletions
|
|
@ -91,7 +91,13 @@ export default function ChatMessage({ chat }: { chat: ChatMessageType }) {
|
|||
) : (
|
||||
<div className="w-full flex items-center">
|
||||
<div className="text-start inline-block px-3 text-sm text-gray-600 dark:text-white">
|
||||
<ReactMarkdown className="markdown prose">{message}</ReactMarkdown>
|
||||
<ReactMarkdown
|
||||
remarkPlugins={[remarkGfm, remarkMath]}
|
||||
rehypePlugins={[rehypeMathjax]}
|
||||
className="markdown prose"
|
||||
>
|
||||
{message}
|
||||
</ReactMarkdown>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue