Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. highlightlang:: rest |
| 2 | |
Alexander Belopolsky | ea3e91e | 2010-11-11 22:43:45 +0000 | [diff] [blame] | 3 | Style guide |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 4 | =========== |
| 5 | |
| 6 | The Python documentation should follow the `Apple Publications Style Guide`_ |
| 7 | wherever possible. This particular style guide was selected mostly because it |
| 8 | seems reasonable and is easy to get online. |
| 9 | |
Alexander Belopolsky | ea3e91e | 2010-11-11 22:43:45 +0000 | [diff] [blame] | 10 | Topics which are either not covered in Apple's style guide or treated |
| 11 | differently in Python documentation will be discussed in this |
| 12 | document. |
| 13 | |
| 14 | Use of whitespace |
| 15 | ----------------- |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 16 | |
| 17 | All reST files use an indentation of 3 spaces. The maximum line length is 80 |
| 18 | characters for normal text, but tables, deeply indented code samples and long |
| 19 | links may extend beyond that. |
| 20 | |
| 21 | Make generous use of blank lines where applicable; they help grouping things |
| 22 | together. |
| 23 | |
| 24 | A sentence-ending period may be followed by one or two spaces; while reST |
| 25 | ignores the second space, it is customarily put in by some users, for example |
| 26 | to aid Emacs' auto-fill mode. |
| 27 | |
Alexander Belopolsky | ea3e91e | 2010-11-11 22:43:45 +0000 | [diff] [blame] | 28 | Footnotes |
| 29 | --------- |
| 30 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 31 | Footnotes are generally discouraged, though they may be used when they are the |
| 32 | best way to present specific information. When a footnote reference is added at |
| 33 | the end of the sentence, it should follow the sentence-ending punctuation. The |
| 34 | reST markup should appear something like this:: |
| 35 | |
| 36 | This sentence has a footnote reference. [#]_ This is the next sentence. |
| 37 | |
| 38 | Footnotes should be gathered at the end of a file, or if the file is very long, |
| 39 | at the end of a section. The docutils will automatically create backlinks to |
| 40 | the footnote reference. |
| 41 | |
| 42 | Footnotes may appear in the middle of sentences where appropriate. |
| 43 | |
Alexander Belopolsky | ea3e91e | 2010-11-11 22:43:45 +0000 | [diff] [blame] | 44 | Capitalization |
| 45 | -------------- |
| 46 | |
| 47 | .. sidebar:: Sentence case |
| 48 | |
| 49 | Sentence case is a set of capitalization rules used in English |
| 50 | sentences: the first word is always capitalized and other words are |
| 51 | only capitalized if there is a specific rule requiring it. |
| 52 | |
| 53 | Apple style guide recommends the use of title case in section titles. |
| 54 | However, rules for which words should be capitalized in title case |
| 55 | vary greaty between publications. |
| 56 | |
| 57 | In Python documentation, use of sentence case in section titles is |
| 58 | preferable, but consistency within a unit is more important than |
| 59 | following this rule. If you add a section to the chapter where most |
| 60 | sections are in title case you can either convert all titles to |
| 61 | sentence case or use the dominant style in the new section title. |
| 62 | |
| 63 | Sentences that start with a word for which specific rules require |
| 64 | starting it with a lower case letter should be avoided in titles and |
| 65 | elsewhere. |
| 66 | |
| 67 | .. note:: |
| 68 | |
| 69 | Sections that describe a library module often have titles in the |
| 70 | form of "modulename --- Short description of the module." In this |
| 71 | case, the description should be capitalized as a stand-alone |
| 72 | sentence. |
| 73 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 74 | Many special names are used in the Python documentation, including the names of |
| 75 | operating systems, programming languages, standards bodies, and the like. Most |
| 76 | of these entities are not assigned any special markup, but the preferred |
| 77 | spellings are given here to aid authors in maintaining the consistency of |
| 78 | presentation in the Python documentation. |
| 79 | |
| 80 | Other terms and words deserve special mention as well; these conventions should |
| 81 | be used to ensure consistency throughout the documentation: |
| 82 | |
| 83 | CPU |
Alexander Belopolsky | ea3e91e | 2010-11-11 22:43:45 +0000 | [diff] [blame] | 84 | For "central processing unit." Many style guides say this should be |
| 85 | spelled out on the first use (and if you must use it, do so!). For |
| 86 | the Python documentation, this abbreviation should be avoided since |
| 87 | there's no reasonable way to predict which occurrence will be the |
| 88 | first seen by the reader. It is better to use the word "processor" |
| 89 | instead. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 90 | |
| 91 | POSIX |
Alexander Belopolsky | ea3e91e | 2010-11-11 22:43:45 +0000 | [diff] [blame] | 92 | The name assigned to a particular group of standards. This is always |
| 93 | uppercase. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 94 | |
| 95 | Python |
Alexander Belopolsky | ea3e91e | 2010-11-11 22:43:45 +0000 | [diff] [blame] | 96 | The name of our favorite programming language is always capitalized. |
| 97 | |
| 98 | reST |
| 99 | For "reStructuredText," an easy to read, plaintext markup syntax |
| 100 | used to produce Python documentation. When spelled out, it is |
| 101 | always one word and both forms start with a lower case 'r'. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 102 | |
| 103 | Unicode |
Alexander Belopolsky | ea3e91e | 2010-11-11 22:43:45 +0000 | [diff] [blame] | 104 | The name of a character coding system. This is always written |
| 105 | capitalized. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 106 | |
| 107 | Unix |
Alexander Belopolsky | ea3e91e | 2010-11-11 22:43:45 +0000 | [diff] [blame] | 108 | The name of the operating system developed at AT&T Bell Labs in the early |
| 109 | 1970s. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 110 | |
| 111 | |
Georg Brandl | 386bc6d | 2010-04-25 10:19:53 +0000 | [diff] [blame] | 112 | .. _Apple Publications Style Guide: http://developer.apple.com/mac/library/documentation/UserExperience/Conceptual/APStyleGuide/APSG_2009.pdf |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 113 | |