mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-19 23:19:15 +08:00
chore: support both $$ and $ latex format (#5723)
This commit is contained in:
parent
a6356be348
commit
9513155fa4
@ -44,7 +44,8 @@ const preprocessLaTeX = (content: string) => {
|
||||
if (typeof content !== 'string')
|
||||
return content
|
||||
return content.replace(/\\\[(.*?)\\\]/gs, (_, equation) => `$$${equation}$$`)
|
||||
.replace(/\\\((.*?)\\\)/gs, (_, equation) => `$${equation}$`)
|
||||
.replace(/\\\((.*?)\\\)/gs, (_, equation) => `$$${equation}$$`)
|
||||
.replace(/(^|[^\\])\$(.+?)\$/gs, (_, prefix, equation) => `${prefix}$${equation}$`)
|
||||
}
|
||||
|
||||
export function PreCode(props: { children: any }) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user