We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Related: jupyter-widgets/ipywidgets#3957
I expect ANSI colors to be shown
ANSI colors are not rendered
import ipywidgets as widgets print("\033[91mHello World\033[0m") output = widgets.Output() output.append_stdout("\033[91mHello World\033[0m") output
The element has the correct CSS class, but the class stylesheet is missing. https://github.com/jupyterlab/jupyterlab/blob/main/packages/rendermime/style/base.css#L126
The text was updated successfully, but these errors were encountered:
Workaround: Import the missing stylesheet manually.
from IPython.display import HTML from urllib.request import urlopen html = urlopen("https://raw.githubusercontent.com/jupyterlab/jupyterlab/refs/heads/main/packages/rendermime/style/base.css") HTML(f"<style>{html.read().decode('utf-8')}</style>")
Sorry, something went wrong.
DonJayamanne
No branches or pull requests
Related: jupyter-widgets/ipywidgets#3957
Environment data
Expected behaviour
I expect ANSI colors to be shown
Actual behaviour
ANSI colors are not rendered
Steps to reproduce:
The element has the correct CSS class, but the class stylesheet is missing.
https://github.com/jupyterlab/jupyterlab/blob/main/packages/rendermime/style/base.css#L126
The text was updated successfully, but these errors were encountered: