1=head1 NAME 2 3perlpodstyle - Perl POD style guide 4 5=head1 DESCRIPTION 6 7These are general guidelines for how to write POD documentation for Perl 8scripts and modules, based on general guidelines for writing good UNIX man 9pages. All of these guidelines are, of course, optional, but following 10them will make your documentation more consistent with other documentation 11on the system. 12 13The name of the program being documented is conventionally written in bold 14(using BE<lt>E<gt>) wherever it occurs, as are all program options. 15Arguments should be written in italics (IE<lt>E<gt>). Function names are 16traditionally written in italics; if you write a function as function(), 17Pod::Man will take care of this for you. Literal code or commands should 18be in CE<lt>E<gt>. References to other man pages should be in the form 19C<manpage(section)> or C<LE<lt>manpage(section)E<gt>>, and Pod::Man will 20automatically format those appropriately. The second form, with 21LE<lt>E<gt>, is used to request that a POD formatter make a link to the 22man page if possible. As an exception, one normally omits the section 23when referring to module documentation since it's not clear what section 24module documentation will be in; use C<LE<lt>Module::NameE<gt>> for module 25references instead. 26 27References to other programs or functions are normally in the form of man 28page references so that cross-referencing tools can provide the user with 29links and the like. It's possible to overdo this, though, so be careful not 30to clutter your documentation with too much markup. References to other 31programs that are not given as man page references should be enclosed in 32BE<lt>E<gt>. 33 34The major headers should be set out using a C<=head1> directive, and are 35historically written in the rather startling ALL UPPER CASE format; this 36is not mandatory, but it's strongly recommended so that sections have 37consistent naming across different software packages. Minor headers may 38be included using C<=head2>, and are typically in mixed case. 39 40The standard sections of a manual page are: 41 42=over 4 43 44=item NAME 45 46Mandatory section; should be a comma-separated list of programs or 47functions documented by this POD page, such as: 48 49 foo, bar - programs to do something 50 51Manual page indexers are often extremely picky about the format of this 52section, so don't put anything in it except this line. Every program or 53function documented by this POD page should be listed, separated by a 54comma and a space. For a Perl module, just give the module name. A 55single dash, and only a single dash, should separate the list of programs 56or functions from the description. Do not use any markup such as 57CE<lt>E<gt> or BE<lt>E<gt> anywhere in this line. Functions should not be 58qualified with C<()> or the like. The description should ideally fit on a 59single line, even if a man program replaces the dash with a few tabs. 60 61=item SYNOPSIS 62 63A short usage summary for programs and functions. This section is 64mandatory for section 3 pages. For Perl module documentation, it's 65usually convenient to have the contents of this section be a verbatim 66block showing some (brief) examples of typical ways the module is used. 67 68=item DESCRIPTION 69 70Extended description and discussion of the program or functions, or the 71body of the documentation for man pages that document something else. If 72particularly long, it's a good idea to break this up into subsections 73C<=head2> directives like: 74 75 =head2 Normal Usage 76 77 =head2 Advanced Features 78 79 =head2 Writing Configuration Files 80 81or whatever is appropriate for your documentation. 82 83For a module, this is generally where the documentation of the interfaces 84provided by the module goes, usually in the form of a list with an 85C<=item> for each interface. Depending on how many interfaces there are, 86you may want to put that documentation in separate METHODS, FUNCTIONS, 87CLASS METHODS, or INSTANCE METHODS sections instead and save the 88DESCRIPTION section for an overview. 89 90=item OPTIONS 91 92Detailed description of each of the command-line options taken by the 93program. This should be separate from the description for the use of 94parsers like L<Pod::Usage>. This is normally presented as a list, with 95each option as a separate C<=item>. The specific option string should be 96enclosed in BE<lt>E<gt>. Any values that the option takes should be 97enclosed in IE<lt>E<gt>. For example, the section for the option 98B<--section>=I<manext> would be introduced with: 99 100 =item B<--section>=I<manext> 101 102Synonymous options (like both the short and long forms) are separated by a 103comma and a space on the same C<=item> line, or optionally listed as their 104own item with a reference to the canonical name. For example, since 105B<--section> can also be written as B<-s>, the above would be: 106 107 =item B<-s> I<manext>, B<--section>=I<manext> 108 109Writing the short option first is recommended because it's easier to read. 110The long option is long enough to draw the eye to it anyway and the short 111option can otherwise get lost in visual noise. 112 113=item RETURN VALUE 114 115What the program or function returns, if successful. This section can be 116omitted for programs whose precise exit codes aren't important, provided 117they return 0 on success and non-zero on failure as is standard. It 118should always be present for functions. For modules, it may be useful to 119summarize return values from the module interface here, or it may be more 120useful to discuss return values separately in the documentation of each 121function or method the module provides. 122 123=item ERRORS 124 125Exceptions, error return codes, exit statuses, and errno settings. 126Typically used for function or module documentation; program documentation 127uses DIAGNOSTICS instead. The general rule of thumb is that errors 128printed to C<STDOUT> or C<STDERR> and intended for the end user are 129documented in DIAGNOSTICS while errors passed internal to the calling 130program and intended for other programmers are documented in ERRORS. When 131documenting a function that sets errno, a full list of the possible errno 132values should be given here. 133 134=item DIAGNOSTICS 135 136All possible messages the program can print out and what they mean. You 137may wish to follow the same documentation style as the Perl documentation; 138see perldiag(1) for more details (and look at the POD source as well). 139 140If applicable, please include details on what the user should do to 141correct the error; documenting an error as indicating "the input buffer is 142too small" without telling the user how to increase the size of the input 143buffer (or at least telling them that it isn't possible) aren't very 144useful. 145 146=item EXAMPLES 147 148Give some example uses of the program or function. Don't skimp; users 149often find this the most useful part of the documentation. The examples 150are generally given as verbatim paragraphs. 151 152Don't just present an example without explaining what it does. Adding a 153short paragraph saying what the example will do can increase the value of 154the example immensely. 155 156=item ENVIRONMENT 157 158Environment variables that the program cares about, normally presented as 159a list using C<=over>, C<=item>, and C<=back>. For example: 160 161 =over 6 162 163 =item HOME 164 165 Used to determine the user's home directory. F<.foorc> in this 166 directory is read for configuration details, if it exists. 167 168 =back 169 170Since environment variables are normally in all uppercase, no additional 171special formatting is generally needed; they're glaring enough as it is. 172 173=item FILES 174 175All files used by the program or function, normally presented as a list, 176and what it uses them for. File names should be enclosed in FE<lt>E<gt>. 177It's particularly important to document files that will be potentially 178modified. 179 180=item CAVEATS 181 182Things to take special care with, sometimes called WARNINGS. 183 184=item BUGS 185 186Things that are broken or just don't work quite right. 187 188=item RESTRICTIONS 189 190Bugs you don't plan to fix. :-) 191 192=item NOTES 193 194Miscellaneous commentary. 195 196=item AUTHOR 197 198Who wrote it (use AUTHORS for multiple people). It's a good idea to 199include your current e-mail address (or some e-mail address to which bug 200reports should be sent) or some other contact information so that users 201have a way of contacting you. Remember that program documentation tends 202to roam the wild for far longer than you expect and pick a contact method 203that's likely to last. 204 205=item HISTORY 206 207Programs derived from other sources sometimes have this. Some people keep 208a modification log here, but that usually gets long and is normally better 209maintained in a separate file. 210 211=item COPYRIGHT AND LICENSE 212 213For copyright 214 215 Copyright YEAR(s) YOUR NAME(s) 216 217(No, (C) is not needed. No, "all rights reserved" is not needed.) 218 219For licensing the easiest way is to use the same licensing as Perl itself: 220 221 This library is free software; you may redistribute it and/or 222 modify it under the same terms as Perl itself. 223 224This makes it easy for people to use your module with Perl. Note that 225this licensing example is neither an endorsement or a requirement, you are 226of course free to choose any licensing. 227 228=item SEE ALSO 229 230Other man pages to check out, like man(1), man(7), makewhatis(8), or 231catman(8). Normally a simple list of man pages separated by commas, or a 232paragraph giving the name of a reference work. Man page references, if 233they use the standard C<name(section)> form, don't have to be enclosed in 234LE<lt>E<gt> (although it's recommended), but other things in this section 235probably should be when appropriate. 236 237If the package has a mailing list, include a URL or subscription 238instructions here. 239 240If the package has a web site, include a URL here. 241 242=back 243 244Documentation of object-oriented libraries or modules may want to use 245CONSTRUCTORS and METHODS sections, or CLASS METHODS and INSTANCE METHODS 246sections, for detailed documentation of the parts of the library and save 247the DESCRIPTION section for an overview. Large modules with a function 248interface may want to use FUNCTIONS for similar reasons. Some people use 249OVERVIEW to summarize the description if it's quite long. 250 251Section ordering varies, although NAME must always be the first section 252(you'll break some man page systems otherwise), and NAME, SYNOPSIS, 253DESCRIPTION, and OPTIONS generally always occur first and in that order if 254present. In general, SEE ALSO, AUTHOR, and similar material should be 255left for last. Some systems also move WARNINGS and NOTES to last. The 256order given above should be reasonable for most purposes. 257 258Some systems use CONFORMING TO to note conformance to relevant standards 259and MT-LEVEL to note safeness for use in threaded programs or signal 260handlers. These headings are primarily useful when documenting parts of a 261C library. 262 263Finally, as a general note, try not to use an excessive amount of markup. 264As documented here and in L<Pod::Man>, you can safely leave Perl 265variables, function names, man page references, and the like unadorned by 266markup and the POD translators will figure it out for you. This makes it 267much easier to later edit the documentation. Note that many existing 268translators will do the wrong thing with e-mail addresses when wrapped in 269LE<lt>E<gt>, so don't do that. 270 271=head1 SEE ALSO 272 273For additional information that may be more accurate for your specific 274system, see either L<man(5)> or L<man(7)> depending on your system manual 275section numbering conventions. 276 277This documentation is maintained as part of the podlators distribution. 278The current version is always available from its web site at 279<http://www.eyrie.org/~eagle/software/podlators/>. 280 281=head1 AUTHOR 282 283Russ Allbery <rra@stanford.edu>, with large portions of this documentation 284taken from the documentation of the original B<pod2man> implementation by 285Larry Wall and Tom Christiansen. 286 287=head1 COPYRIGHT AND LICENSE 288 289Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010 Russ Allbery 290<rra@stanford.edu>. 291 292This documentation is free software; you may redistribute it and/or modify 293it under the same terms as Perl itself. 294 295=cut 296