revert: text split

This commit is contained in:
Timothy J. Baek 2024-07-01 16:04:24 -07:00
parent 7212b7c8aa
commit 6d350fb8bc

View File

@ -525,7 +525,7 @@ export const extractSentences = (text) => {
});
// Split the modified text into sentences based on common punctuation marks, avoiding these blocks
let sentences = text.match(/[^.?!]+[.!?]+[\])'"`’”]*|.+/g);
let sentences = text.split(/(?<=[.!?])\s+/);
// Restore code blocks and process sentences
sentences = sentences.map((sentence) => {