-
Notifications
You must be signed in to change notification settings - Fork 63
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
Non-ASCII Characters #2
Comments
This is fixed in my pull request, see commit 4e649d4. |
@myell0w Perfect! Thanks for the fix. |
@myell0w Just found another issue which is related to the problem above. The parser truncates links if the string includes non-ascii chars:
becomes Änd ä link tö githüb: http://www.github. |
thanks for reporting! is this due to my pull request or did that happen before as well? Sent from iPhone Am 03.05.2013 um 10:28 schrieb Bernhard Loibl [email protected]:
|
@myell0w I'm pretty sure it has nothing to do with your pull request. The problem only occours if the string inlcudes non-ascii chars. I also tried another utf-8 pattern (http://flex.sourceforge.net/manual/Identifiers.html#Identifiers) without success. |
@fonkadelic, I've faced with the same problem, here is solution #12 |
@AlexDenisov hmm... unfortunately the problem still persists for me. |
@fonkadelic, have you tried it on my fork? Cause for me it works well, also it fixes issues in my project. |
@fonkadelic, got it. I thought that we talk about line cut, but just realized that I have missed non-ASCII characters too. That's sad... |
@AlexDenisov ah... you're right... your PR fixes the truncated lines bug. I don't have recognized this at first sight. |
@fonkadelic, yeah, thanks for the link. |
how's this working now? I don't find the markdown.grammer-File in this project... |
Seems like the parser eats non-ASCII Characters outside of the tokens.
For example:
@"This is *italic*, **bold**, änd ***böld italic***."
becomes
This is italic, bold, nd _böld italic_.
The text was updated successfully, but these errors were encountered: