-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Delimiter handling exception #931
Comments
This seems to be coming from 22b3cdb |
Thanks for the precise report. AIUI we do want to keep the space requirement for the I'd say we want to add to Note that |
Thank you for your work, and I'm not sure if I should raise a question in this issue
|
I don't think it's worth changing it: it's a very rough guess anyway.
Which version did you test with? Note that I fixed #806 recently |
I am very sorry, I have confirmed that this issue is not related to speechd, this problem comes from Okular. |
Summary
The delimiter is not processed correctly when there is no space after the delimiter, as observed when using the spd-sya -w "hello,this,is,a,test" command.
Steps to Reproduce
spd-sya -w "hello,this,is,a,test
Expected Behavior
The message should be split correctly at each delimiter, regardless of whether there is whitespace around the delimiter. For the input "hello,this,is,a,test", each fragment ("hello", "this", "is", "a", "test") should be returned in order.
Actual Behavior
The function does not segment the message correctly when there are no spaces around the delimiters. It behaves as if the delimiters are not present and returns the entire message as a single segment.
Importance of Fix
In many languages, it is not common to add spaces after punctuation marks, including commas. Addressing this issue is critical to ensure proper functioning across different language conventions and text formatting styles.
Log
epos-generic.log
The text was updated successfully, but these errors were encountered: