Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -39,9 +39,22 @@ def remove_redundant_words(text):
|
|
39 |
|
40 |
# Function to fix spacing before punctuation
|
41 |
def fix_punctuation_spacing(text):
|
42 |
-
#
|
43 |
-
|
44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
|
46 |
# Function to fix possessives like "Earth's"
|
47 |
def fix_possessives(text):
|
|
|
39 |
|
40 |
# Function to fix spacing before punctuation
|
41 |
def fix_punctuation_spacing(text):
|
42 |
+
# Split the text into words and punctuation
|
43 |
+
words = text.split(' ')
|
44 |
+
cleaned_words = []
|
45 |
+
|
46 |
+
# Define punctuation marks to check
|
47 |
+
punctuation_marks = {',', '.', "'", '!', '?', ':'}
|
48 |
+
|
49 |
+
for word in words:
|
50 |
+
# If the word ends with a punctuation mark, remove space before it
|
51 |
+
if cleaned_words and word and word[0] in punctuation_marks:
|
52 |
+
cleaned_words[-1] += word # Append punctuation to the last word
|
53 |
+
else:
|
54 |
+
cleaned_words.append(word) # Add word to the list
|
55 |
+
|
56 |
+
return ' '.join(cleaned_words).replace(' ,', ',').replace(' .', '.').replace(" '", "'") \
|
57 |
+
.replace(' !', '!').replace(' ?', '?').replace(' :', ':')
|
58 |
|
59 |
# Function to fix possessives like "Earth's"
|
60 |
def fix_possessives(text):
|