mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-12 14:45:42 +08:00
Fix: LaTeX formulas cannot be displayed on the chat page. (#14531)
### What problem does this PR solve? Fix: LaTeX formulas cannot be displayed on the chat page. ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
@@ -52,8 +52,8 @@ export const buildMessageUuidWithRole = (
|
||||
// the last valid delimiter and avoid cutting at the first \] or \) inside the
|
||||
// equation (e.g. \frac{1}{|y|} or \right]).
|
||||
|
||||
const BLOCK_MATH_RE = /\\\[([\s\S]*)(?<![a-zA-Z])\\\]/g;
|
||||
const INLINE_MATH_RE = /\\\(([\s\S]*)(?<![a-zA-Z])\\\)/g;
|
||||
const BLOCK_MATH_RE = /\\\[([\s\S]*?)(?<![a-zA-Z])\\\]/g;
|
||||
const INLINE_MATH_RE = /\\\(([\s\S]*?)(?<![a-zA-Z])\\\)/g;
|
||||
|
||||
export const preprocessLaTeX = (content: string) => {
|
||||
const blockProcessedContent = content.replace(
|
||||
|
||||
Reference in New Issue
Block a user