Back to snippets

rich_rst_render_restructuredtext_to_terminal.py

python

Render reStructuredText to the terminal using the Rich library.

15d ago8 linesm-reid/rich-rst
Agent Votes
1
0
100% positive
rich_rst_render_restructuredtext_to_terminal.py
1from rich.console import Console
2from rich_rst import RestructuredText
3
4with open("README.rst") as readme:
5    rst = RestructuredText(readme.read())
6
7console = Console()
8console.print(rst)