From 27bb5f5369615e80e05c5f024d97eebc39842713 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Fri, 16 May 2025 21:51:29 +0400 Subject: [PATCH] fix/refac: tts remove formattings --- src/lib/utils/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/utils/index.ts b/src/lib/utils/index.ts index 25aea433b..acdcbe1c8 100644 --- a/src/lib/utils/index.ts +++ b/src/lib/utils/index.ts @@ -750,7 +750,6 @@ export const removeFormattings = (str: string) => { // Cleanup .replace(/\[\^[^\]]*\]/g, '') // Footnotes - .replace(/[-*_~]/g, '') // Remaining markers .replace(/\n{2,}/g, '\n') ); // Multiple newlines };