-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
Display issue for val in stdout or stderr with _ (_ not always correctly displayed) #3193
Comments
Thanks for the investigation! @gnestor do you think the fix is OK to slip into 5.3? |
@takluyver Thanks for your quick feedback. |
I don't see why not! Thanks @Naereen! |
This was merged right (#3194), so I close this issue. |
Thanks :-) For future reference, you can put |
I use this for personal projects, but I didn't know that it would work when the PR is merged, thanks! |
Hi! 🎉 Merry new year!
Issue
Here is an example of a weird display issue:
![bug_display_out_value_with_underscore_in_its_name](https://user-images.githubusercontent.com/11994719/34725551-91c1feaa-f551-11e7-92dc-cef9a4bf301e.png)
(The variable
ex1_1
but displayedex1 1
. On Firefox 57, Ubuntu 17.10)Another example, showing the difference between stdout and stderr output:
![bug_display_out_value_with_underscore](https://user-images.githubusercontent.com/11994719/34725968-ebded114-f552-11e7-9f19-d94e406fc2cd.png)
Reason
It's a bug probably coming from the style in
outputarea.less:96
.notebook/notebook/static/notebook/less/outputarea.less
Line 98 in 179bb24
It can be fix by forcing a
![bug_display_out_value_with_underscore_in_its_name2](https://user-images.githubusercontent.com/11994719/34725685-fa6d5120-f551-11e7-8542-63dfbe2f9352.png)
padding-bottom: 1px;
rule fordiv.output_area pre
:I will submit the PR to fix this.
The text was updated successfully, but these errors were encountered: