diff --git a/public/scripts/utils.js b/public/scripts/utils.js index 516a70412..46c1c767a 100644 --- a/public/scripts/utils.js +++ b/public/scripts/utils.js @@ -477,7 +477,7 @@ export function sortByCssOrder(a, b) { * trimToEndSentence('Hello, world! I am from'); // 'Hello, world!' */ export function trimToEndSentence(input, include_newline = false) { - const punctuation = new Set(['.', '!', '?', '*', '"', ')', '}', '`', ']', '$', '。', '!', '?', '”', ')', '】', '’', '」']); // extend this as you see fit + const punctuation = new Set(['.', '!', '?', '*', '"', ')', '}', '`', ']', '$', '。', '!', '?', '”', ')', '】', '’', '」', '_']); // extend this as you see fit let last = -1; for (let i = input.length - 1; i >= 0; i--) {