We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
func getUnicode(control string) (bool, string) { if len(control) < 2 || control[0] != '\'' { return false, "" }
The text was updated successfully, but these errors were encountered:
read hex byte into control for unicode
a10a303
- possibly fixes lu4p#26
read hex byte into control for unicode (#29)
acd8306
- possibly fixes #26
Successfully merging a pull request may close this issue.
func getUnicode(control string) (bool, string) { if len(control) < 2 || control[0] != '\'' { return false, "" }
if len(control) < 2 || control[0] != ''' {
return false, ""
}
if control[0] == ''' {
return false, ""
}
rtf:{*\panose 02010600030101010101}'cb'ce'cc'e5
'cb'ce'cc'e5 is not text and need return false
The text was updated successfully, but these errors were encountered: