We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9d9a1a commit f48d848Copy full SHA for f48d848
1 file changed
docs/notes/styleguide.rst
@@ -61,10 +61,18 @@ Sub section headings::
61
Very Deep
62
~~~~~~~~~
63
64
+Prose
65
+-----
66
+
67
+Wrap text lines at 78 characters. Where necessary, lines may exceed 78
68
+characters, especially if wrapping would make the source text more difficult
69
+to read.
70
71
72
Code Examples
73
-------------
74
-Wrap all code examples within 70 characters to avoid horizontal scrollbars.
75
+Wrap all code examples at 70 characters to avoid horizontal scrollbars.
76
77
Command line examples::
78
@@ -79,12 +87,16 @@ Python interpreter examples::
79
87
80
88
Label the example::
81
89
90
+ .. code-block:: python
91
82
92
>>> import this
83
93
84
94
Python examples::
85
95
86
96
Descriptive title::
97
98
99
100
def get_answer():
101
return 42
102
0 commit comments