Skip to content

Instantly share code, notes, and snippets.

@pszemraj
Created December 2, 2025 23:07
Show Gist options
  • Select an option

  • Save pszemraj/cb6d9687f1fa7b17fc366c45f02c9f67 to your computer and use it in GitHub Desktop.

Select an option

Save pszemraj/cb6d9687f1fa7b17fc366c45f02c9f67 to your computer and use it in GitHub Desktop.
put this in its own cell at the start of your notebook
#@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