From cfeb34743c21984aa5ea76e27411155b56b05ef5 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Sat, 27 Jun 2020 22:18:30 +0100 Subject: [PATCH] better docs --- docs/source/appendix/box.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/source/appendix/box.rst b/docs/source/appendix/box.rst index 24415fc8..bbabb363 100644 --- a/docs/source/appendix/box.rst +++ b/docs/source/appendix/box.rst @@ -3,13 +3,12 @@ Box === -Rich defines a number of ways of drawing boxes and lines such as those used in tables. To select a box style import one of the constants below from rich.box. For example:: +Rich has a number of constants that set the box characters used to draw tables and panels. To select a box style import one of the constants below from ``rich.box``. For example:: from rich import box table = Table(box=box.SQUARE) - .. note:: Some of the box drawing characters will not display correctly on Windows legacy terminal (cmd.exe) with *raster* fonts, and are disabled by default. If you want the full range of box options on Windows legacy terminal, use a *truetype* font and set the ``safe_box`` parameter on the Table class to ``False``.