-
Notifications
You must be signed in to change notification settings - Fork 73
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
check for undesirable quotes #260
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your contribution! I left some comments to simplify things a bit. Hopefully it's helpful.
@mbrt thank you for your help and patience. |
I think this is finally "correct" and I have squashed and reworded my commits appropriately. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the changes! We're almost there.
Thank you @mefuller! This is good to go. |
Thank you @mbrt |
Fixes #66.
It's also my first attempt to meaningfully work on go/golang, so any guidance or pointers are very appreciated
Since processed strings are enclosed in outer double quotes, I test for a double quote contained anywhere as well as for enclosing single quotes, which would then be captured inside double quotes and result in a mismatch
Thanks