-
Notifications
You must be signed in to change notification settings - Fork 38
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
Warn about usage of non-breaking space #107
Conversation
This issue could be addressed also by creating a new Token for |
Question: Do we also want to cover other unicode sequences which represent whitespace? Resources: |
I believe it is a good idea to address all unicode sequences which represent We can also follow Babel example and use something similar to |
Do what you think is best. :) |
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.
As discussed we will want to protect from some additional characters or at least use a unicode representation within the code to avoid confusion.
use explicit char for readability Co-Authored-By: byara <[email protected]>
Reference issue: #85
What changed in this PR:
This PR adds a warning about usage of non-breaking space in a template. Regarding this issue, a unit test is added.