Browse Source

Merge pull request #1665 from dannyl1u/fix/html-br-tag-escaped

fix: <br> is not escaped in output text
Timothy Jaeryang Baek 1 year ago
parent
commit
1e76dbc9a0
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/lib/utils/index.ts

+ 0 - 1
src/lib/utils/index.ts

@@ -35,7 +35,6 @@ export const sanitizeResponseContent = (content: string) => {
 		.replace(/<\|[a-z]+\|$/, '')
 		.replace(/<$/, '')
 		.replaceAll(/<\|[a-z]+\|>/g, ' ')
-		.replaceAll(/<br\s?\/?>/gi, '\n')
 		.replaceAll('<', '&lt;')
 		.trim();
 };