Created
December 2, 2025 23:07
-
-
Save pszemraj/cb6d9687f1fa7b17fc366c45f02c9f67 to your computer and use it in GitHub Desktop.
put this in its own cell at the start of your notebook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #@markdown add auto-Colab formatting with `IPython.display` | |
| from IPython.display import HTML, display | |
| # colab formatting | |
| def set_css(): | |
| display( | |
| HTML( | |
| """ | |
| <style> | |
| pre { | |
| white-space: pre-wrap; | |
| } | |
| </style> | |
| """ | |
| ) | |
| ) | |
| get_ipython().events.register("pre_run_cell", set_css) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment