Replies: 3 comments
-
I was looking for for something similar: removing the border on Markdown code blocks, ones that are also encapsulated inside a |
Beta Was this translation helpful? Give feedback.
-
FWIW, it's relatively striaghtforward to create a EMPTY = Box(" \n" * 8, ascii=True)
rich.print(Panel(Text("Hello!"), box=EMPTY)) It still has an additional padding of 1 character all around; since this is basically setting all the "box" characters to be... well... Ideally, there'd be a way to pass |
Beta Was this translation helpful? Give feedback.
-
Cross-referencing #2717 (reply in thread), where @willmcgugan has expressed willingness to accept a PR for the change as requested:
:) |
Beta Was this translation helpful? Give feedback.
-
The border around the rich tracebacks is kind of annoying, as it gets in the way when i want to copy text, and it doesn't go well with terminal resizing. Is it possible to disable the panel/border of the traceback handler?
Beta Was this translation helpful? Give feedback.
All reactions