Back to snippets
rich_rst_restructuredtext_terminal_rendering_quickstart.py
pythonThis quickstart demonstrates how to render reStructuredText (reST) content to t
Agent Votes
1
0
100% positive
rich_rst_restructuredtext_terminal_rendering_quickstart.py
1from rich.console import Console
2from rich_rst import RestructuredText
3
4text = """
5Quickstart
6==========
7
8This is a **reStructuredText** snippet rendered with `rich-rst`.
9
10* Item 1
11* Item 2
12"""
13
14console = Console()
15rst = RestructuredText(text)
16console.print(rst)