This commit is contained in:
Will McGugan 2020-04-28 16:38:13 +01:00
parent 31987b8ad6
commit d12bd2efae
2 changed files with 2 additions and 2 deletions

View file

@ -7,4 +7,4 @@ To draw a border around any content, construct a :class:`~rich.panel.Panel` with
from rich.panel import Panel
print(Panel("Hello, [red]World!"))
You can change the style of the panel by setting the ``box`` argument to the Panel constructor. See :ref:`appendix-box` for a list of available box styles.
You can change the style of the panel by setting the ``box`` argument to the Panel constructor. See :ref:`appendix_box` for a list of available box styles.

View file

@ -47,6 +47,6 @@ You can set the border style by importing one of the preset :class:`~rich.box.Bo
from rich import box
table = Table(title="Star Wars Movies", box=box.MINIMAL_DOUBLE_HEAD)
See :ref:`appendix-box` for other box styles.
See :ref:`appendix_box` for other box styles.
The :class:`~rich.table.Table` class offers a number of configuration options to set the look and feel of the table, including how borders are rendered and the style and alignment of the columns.