enh: voice call skip code block & expression

This commit is contained in:
Timothy J. Baek 2024-06-22 16:13:13 -07:00
parent fd96c9c68d
commit 6e084b4a73

View File

@ -506,12 +506,16 @@ export const removeEmojis = (str) => {
return str.replace(emojiRegex, '');
};
export const removeFormattings = (str) => {
return str.replace(/(\*)(.*?)\1/g, '').replace(/(```)(.*?)\1/gs, '');
};
export const extractSentences = (text) => {
// Split the paragraph into sentences based on common punctuation marks
const sentences = text.split(/(?<=[.!?])\s+/);
return sentences
.map((sentence) => removeEmojis(sentence.trim()))
.map((sentence) => removeFormattings(removeEmojis(sentence.trim())))
.filter((sentence) => sentence !== '');
};