From e545326c621e2c3576af0506799f20df47836bcc Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Sat, 3 Oct 2020 14:37:56 +0100 Subject: [PATCH] doc --- docs/source/highlighting.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/highlighting.rst b/docs/source/highlighting.rst index 953d7388..260cfbea 100644 --- a/docs/source/highlighting.rst +++ b/docs/source/highlighting.rst @@ -1,7 +1,7 @@ Highlighting ============ -Rich can apply styles to patterns in text which you :meth:`~rich.console.Console.print` or :meth:`~rich.console.Console.log`. With the default settings, Rich will highlight things such as numbers, strings, collections, booleans, None, and a few more exotic patterns such as URLs and UUIDs. +Rich can apply styles to patterns in text which you :meth:`~rich.console.Console.print` or :meth:`~rich.console.Console.log`. With the default settings, Rich will highlight things such as numbers, strings, collections, booleans, None, and a few more exotic patterns such as file paths, URLs and UUIDs. You can disable highlighting either by setting ``highlight=False`` on :meth:`~rich.console.Console.print` or :meth:`~rich.console.Console.log`, or by setting ``highlight=False`` on the :class:`~rich.console.Console` constructor which disables it everywhere. If you disable highlighting on the constructor, you can still selectively *enable* highlighting with ``highlight=True`` on print/log.