Kaynağa Gözat

fix: dialog box cannot correctly display LaTeX formulas (#9242)

Likename Haojie 6 ay önce
ebeveyn
işleme
ea584e94bd
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      web/app/components/base/markdown.tsx

+ 1 - 1
web/app/components/base/markdown.tsx

@@ -245,7 +245,7 @@ export function Markdown(props: { content: string; className?: string }) {
   return (
     <div className={cn(props.className, 'markdown-body')}>
       <ReactMarkdown
-        remarkPlugins={[[RemarkGfm, RemarkMath, { singleDollarTextMath: false }], RemarkBreaks]}
+        remarkPlugins={[RemarkGfm, RemarkMath, RemarkBreaks]}
         rehypePlugins={[
           RehypeKatex,
           RehypeRaw as any,