Skip to content

Commit

Permalink
fix normalizer keep punctuation
Browse files Browse the repository at this point in the history
  • Loading branch information
mujeebcpy committed Sep 19, 2024
1 parent 0acbb55 commit 9c8185b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libindic/payyans/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def ASCII2Unicode(self, ascii_text, font):
unicode_text = transposed_text.translate(translator)

# മൂന്നാമത്തെ ഓട്ടം: ചേരുംപടി ചേര്‍ക്കുക
unicode_text = self.normalizer.normalize(unicode_text)
unicode_text = self.normalizer.normalize(unicode_text, remove_punctuations=False)

return unicode_text # മതം മാറ്റി തിരിച്ചു കൊടുക്ക്വാ !

Expand Down

0 comments on commit 9c8185b

Please sign in to comment.