Closed simedw closed 4 years ago
Hi, thanks for a great library.
I have a use case in which I needed to ignore underscores, but since they are part of [:punct:] using ignore: "_" didn't work.
[:punct:]
ignore: "_"
In this PR I extracted out the :punct: to a list of characters and then filter out the ignored_codepoints.
:punct:
ignored_codepoints
Thanks for the feedback @jayjun , I have updated the PR.
👍👌🤝👊🤘
Hi, thanks for a great library.
I have a use case in which I needed to ignore underscores, but since they are part of
[:punct:]
usingignore: "_"
didn't work.In this PR I extracted out the
:punct:
to a list of characters and then filter out theignored_codepoints
.