-
Notifications
You must be signed in to change notification settings - Fork 4
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
Overbars #4
Comments
William, I have an overbar implementation which is coming along nicely. It's over here if you'd like to take a peek: I've added Travis CI integration and am currently testing against Python 2.7, & 3.3 -> 3.6
It turns out that GitHub's markdown engine does not properly handle the Unicode overbar when it occurs within a code block. For example, the value in the post above actually ends in two zeros (the first of which has an overbar), but the second zero does not render (though it is visible in "edit" mode"). To circumvent the rendering issue I embedded an image in the README.md to show the behavior of the new Cheers! |
This is a good option. What do you think about converting these values back integers or floats for people because that starts to become a problem if being stored for later use? |
William,
I'm not going to drag over-bars into the scope of the already broad PR we're working on, but it turns out that there is a "COMBINING_OVERLINE" Unicode character (\u0305) that places an overline over the character it follows. One would have to deal with Python2 vs. 3 Unicode issues, and it wouldn't be useful to people unless the output device their data was headed for supported it (so it would have to be a unique mode option), but at least it is possible.
Food for thought :)
The text was updated successfully, but these errors were encountered: