rich print output #3320
-
Hi, from rich import print
print('[snippet: ..., link: ...], [snippet: ..., link: ...]') This seems to print only the |
Beta Was this translation helpful? Give feedback.
Answered by
pushbroomsweep
Apr 3, 2024
Replies: 1 comment
-
Ah found it in the documentation. I have to escape the markup. The following worked. from rich import print
from rich.escape import escape
print(escape("[snippet: ..., link: ...], [snippet: ..., link: ...]")) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
pushbroomsweep
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ah found it in the documentation. I have to escape the markup.
The following worked.