forked from open-webui/open-webui
fix: <br> is not escaped in output text
This commit is contained in:
parent
e6fad5ccb0
commit
8e94618c51
1 changed files with 1 additions and 2 deletions
|
@ -35,7 +35,6 @@ export const sanitizeResponseContent = (content: string) => {
|
||||||
.replace(/<\|[a-z]+\|$/, '')
|
.replace(/<\|[a-z]+\|$/, '')
|
||||||
.replace(/<$/, '')
|
.replace(/<$/, '')
|
||||||
.replaceAll(/<\|[a-z]+\|>/g, ' ')
|
.replaceAll(/<\|[a-z]+\|>/g, ' ')
|
||||||
.replaceAll(/<br\s?\/?>/gi, '\n')
|
|
||||||
.replaceAll('<', '<')
|
.replaceAll('<', '<')
|
||||||
.trim();
|
.trim();
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue