You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/feature_request.md
-4Lines changed: 0 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,3 @@ Give as much detail as you can. Example code of how you would like it to work wo
18
18
**What problem does it solve for you?**
19
19
20
20
What problem do you have that this feature would solve? I may be able to suggest an existing way of solving it.
21
-
22
-
**Did I help**
23
-
24
-
If I was able to resolve your problem, consider [sponsoring](https://github.com/sponsors/willmcgugan) my work on Rich, or [buy me a coffee](https://ko-fi.com/willmcgugan) to say thanks.
Copy file name to clipboardExpand all lines: docs/source/introduction.rst
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
Introduction
2
2
============
3
3
4
-
Rich is a Python library for writing *rich* text (with color and style) to the terminal, and for displaying advanced content such as tables, markdown, and syntax highlighted code.
4
+
Rich is a Python library for writing *rich* text (with color and style) to the terminal, and for displaying advanced content such as tables, markdown, and syntax highlighted code.
5
5
6
6
Use Rich to make your command line applications visually appealing and present data in a more readable way. Rich can also be a useful debugging aid by pretty printing and syntax highlighting data structures.
7
7
@@ -38,7 +38,7 @@ The quickest way to get up and running with Rich is to import the alternative ``
38
38
39
39
from rich import print
40
40
41
-
You can then print strings or objects to the terminal in the usual way. Rich will do some basic syntax highlighting and format data structures to make them easier to read.
41
+
You can then print strings or objects to the terminal in the usual way. Rich will do some basic syntax :ref:`highlighting<highlighting>` and format data structures to make them easier to read.
42
42
43
43
Strings may contain :ref:`console_markup` which can be used to insert color and styles in to the output.
44
44
@@ -50,7 +50,7 @@ This writes the following output to the terminal (including all the colors and s
50
50
51
51
.. raw:: html
52
52
53
-
<prestyle="font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace"><spanstyle="color: #800000; font-style: italic">Hello</span> World!
53
+
<prestyle="font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace"><spanstyle="color: #800000; font-style: italic">Hello</span> World!
0 commit comments