summaryrefslogtreecommitdiff
path: root/pod/perldocstyle.pod
blob: 927a2d8144644afbe41061f16f9832339cc14320 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
=encoding utf8

=head1 NAME

perldocstyle - A style guide for writing Perl's documentation

=head1 DESCRIPTION

This document is a guide for the authorship and maintenance of the
documentation that ships with Perl. This includes the following:

=over

=item *

The several dozen manual sections whose filenames begin with "C<perl>",
such as C<perlobj>, C<perlre>, and C<perlintro>. (And, yes, C<perl>.)

=item *

The documentation for all the modules included with Perl (as listed by
L<C<perlmodlib>|perlmodlib>).

=item *

The hundreds of individually presented reference sections derived from
the L<C<perlfunc>|perlfunc> file.

=back

This guide will hereafter refer to user-manual section files as I<man
pages>, per Unix convention.

=head2 Purpose of this guide

This style guide aims to establish standards, procedures, and philosophies
applicable to Perl's core documentation.

Adherence to these standards will help ensure that any one part of
Perl's manual has a tone and style consistent with that of any other. As
with the rest of the Perl project, the language's documentation
collection is an open-source project authored over a long period of time
by many people. Maintaining consistency across such a wide swath of work
presents a challenge; this guide provides a foundation to help mitigate
this difficulty.

This will help its readers--especially those new to Perl--to feel
more welcome and engaged with Perl's documentation, and this in turn
will help the Perl project itself grow stronger through having a larger,
more diverse, and more confident population of knowledgeable users.

=head2 Intended audience

Anyone interested in contributing to Perl's core documentation should
familiarize themselves with the standards outlined by this guide.

Programmers documenting their own work apart from the Perl project
itself may also find this guide worthwhile, especially if they wish
their work to extend the tone and style of Perl's own manual.

=head2 Status of this document

This guide was initially drafted in late 2020, drawing from the
documentation style guides of several open-source technologies
contemporary with Perl. This has included Python, Raku, Rust, and the
Linux kernel.

The author intends to see this guide used as starting place from
which to launch a review of Perl's reams of extant documentation, with
the expectation that those conducting this review should grow and modify
this guide as needed to account for the requirements and quirks
particular to Perl's programming manual.

=head1 FUNDAMENTALS

=head2 Choice of markup: Pod

All of Perl's core documentation uses Pod ("Plain Old Documentation"), a
simple markup language, to format its source text. Pod is similar in
spirit to other contemporary lightweight markup technologies, such as
Markdown and reStructuredText, and has a decades-long shared history
with Perl itself.

For a comprehensive reference to Pod syntax, see L<C<perlpod>|perlpod>.
For the sake of reading this guide, familiarity with the Pod syntax for
section headers (C<=head2>, et cetera) and for inline text formatting
(C<CE<lt>like thisE<gt>>) should suffice.

Perl programmers also use Pod to document their own scripts, libraries,
and modules. This use of Pod has its own style guide, outlined by
L<C<perlpodstyle>|perlpodstyle>.

=head2 Choice of language: American English

Perl's core documentation is written in English, with a preference for
American spelling of words and expression of phrases. That means "color"
over "colour", "math" versus "maths", "the team has decided" and not
"the team have decided", and so on.

We name one style of English for the sake of consistency across Perl's
documentation, much as a software project might declare a four-space
indentation standard--even when that doesn't affect how well the code
compiles. Both efforts result in an easier read by avoiding jarring,
mid-document changes in format or style.

Contributors to Perl's documentation should note that this rule
describes the ultimate, published output of the project, and does not
prescribe the dialect used within community contributions. The
documentation team enthusiastically welcomes any English-language
contributions, and will actively assist in Americanizing spelling and
style when warranted.

=head3 Other languages and translations

Community-authored translations of Perl's documentation do exist,
covering a variety of languages. While the Perl project appreciates
these translation efforts and promotes them when applicable, it does not
officially support or maintain any of them.

That said, keeping Perl's documentation clear, simple, and short has a
welcome side effect of aiding any such translation project.

(Note that the Chinese, Japanese, and Korean-language README files
included with Perl's source distributions provide an exception to this
choice of language--but these documents fall outside the scope of this
guide.)

=head2 Choice of encoding: UTF-8

Perl's core documentation files are encoded in UTF-8, and can make use
of the full range of characters this encoding allows.

As such, every core doc file (or the Pod section of every core module)
should commence with an C<=encoding utf8> declaration.

=head2 Choice of underlying style guide: CMOS

Perl's documentation uses the L<Chicago Manual of
Style|https://www.chicagomanualofstyle.org> (CMOS), 17th Edition, as
its baseline guide for style and grammar. While the document you are
currently reading endeavors to serve as an adequate stand-alone style guide
for the purposes of documenting Perl, authors should consider CMOS the
fallback authority for any pertinent topics not covered here.

Because CMOS is not a free resource, access to it is not a prerequisite
for contributing to Perl's documentation; the doc team will help
contributors learn about and apply its guidelines as needed. However, we
do encourage anyone interested in significant doc contributions to
obtain or at least read through CMOS. (Copies are likely available
through most public libraries, and CMOS-derived fundamentals can be
found online as well.)

=head2 Contributing to Perl's documentation

Perl, like any programming language, is only as good as its
documentation. Perl depends upon clear, friendly, and thorough
documentation in order to welcome brand-new users, teach and explain the
language's various concepts and components, and serve as a lifelong
reference for experienced Perl programmers. As such, the Perl project
welcomes and values all community efforts to improve the language's
documentation.

Perl accepts documentation contributions through the same open-source
project pipeline as code contributions. See L<C<perlhack>|perlhack> for
more information.

=head1 FORMATTING AND STRUCTURE

This section details specific Pod syntax and style that all core Perl
documentation should adhere to, in the interest of consistency and
readability.

=head2 Document structure

Each individual work of core Perl documentation, whether contained
within a C<.pod> file or in the Pod section of a standard code module,
patterns its structure after a number of long-time Unix man page
conventions. (Hence this guide's use of "man page" to refer to any one
self-contained part of Perl's documentation.)

Adhering to these conventions helps Pod formatters present a Perl man
page's content in different contexts--whether a terminal, the web, or
even print. Many of the following requirements originate with
L<C<perlpodstyle>|perlpodstyle>, which derives its recommendations in
turn from these well-established practices.

=head3 Name

After its L<C<=encoding utf8> declaration|/Choice of encoding: UTF-8>, a
Perl man page I<must> present a level-one header named "NAME" (literally),
followed by a paragraph containing the page's name and a very brief
description.

The first few lines of a notional page named C<perlpodexample>:

    =encoding utf8

    =head1 NAME

    perlpodexample - An example of formatting a manual page's title line

=head3 Description and synopsis

Most Perl man pages also contain a DESCRIPTION section featuring a
summary of, or introduction to, the document's content and purpose.

This section should also, one way or another, clearly identify the
audience that the page addresses, especially if it has expectations
about the reader's prior knowledge. For example, a man page that dives
deep into the inner workings of Perl's regular expression engine should
state its assumptions up front--and quickly redirect readers who are
instead looking for a more basic reference or tutorial.

Reference pages, when appropriate, can precede the DESCRIPTION with a
SYNOPSIS section that lists, within one or more code blocks, some very
brief examples of the referenced feature's use. This section should show
a handful of common-case and best-practice examples, rather than an
exhaustive list of every obscure method or alternate syntax available.

=head3 Other sections and subsections

Pages should conclude, when appropriate, with a SEE ALSO section
containing hyperlinks to relevant sections of Perl's manual, other Unix
man pages, or appropriate web pages. Hyperlink each such cross-reference via
C<LE<lt>...E<gt>>.

What other sections to include depends entirely upon the topic at hand.
Authors should feel free to include further C<=head1>-level sections,
whether other standard ones listed by C<perlpodstyle>, or ones specific
to the page's topic; in either case, render these top-level headings in
all-capital letters.

You may then include as many subsections beneath them as needed to meet
the standards of clarity, accessibility, and cross-reference affinity
L<suggested elsewhere in this guide|/Apply one of the four documentation
modes>.

=head3 Author and copyright

In most circumstances, Perl's stand-alone man pages--those contained
within C<.pod> files--do not need to include any copyright or license
information about themselves. Their source Pod files are part of Perl's
own core software repository, and that already covers them under the
same copyright and license terms as Perl itself. You do not need to
include additional "LICENSE" or "COPYRIGHT" sections of your own.

These man pages may optionally credit their primary author, or include a
list of significant contributors, under "AUTHOR" or "CONTRIBUTORS"
headings. Note that the presence of authors' names does not preclude a
given page from L<writing in a voice consistent with the rest of Perl's
documentation|/The documentation speaks with one voice>.

Note that these guidelines do not apply to the core software modules
that ship with Perl. These have their own standards for authorship and
copyright statements, as found in C<perlpodstyle>.

=head2 Formatting rules

=head3 Line length and line wrap

Each line within a Perl man page's Pod source file should measure 72
characters or fewer in length.

Please break paragraphs up into blocks of short lines, rather than
"soft wrapping" paragraphs across hundreds of characters with no line
breaks.

=head3 Code blocks

Just like the text around them, all code examples should be as short and
readable as possible, displaying no more complexity than absolutely
necessary to illustrate the concept at hand.

For the sake of consistency within and across Perl's man pages, all
examples must adhere to the code-layout principles set out by
L<C<perlstyle>|perlstyle>.

Sample code should deviate from these standards only when necessary:
during a demonstration of how Perl disregards whitespace, for example,
or to temporarily switch to two-column indentation for an unavoidably
verbose illustration.

You may include comments within example code to further clarify or label
the code's behavior in-line. You may also use comments as placeholder
for code normally present but not relevant to the current topic, like
so:

    while (my $line = <$fh>) {
        #
        # (Do something interesting with $line here.)
        #
    }

Even the simplest code blocks often require the use of example
variables and subroutines, L<whose names you should choose with
care|/Use meaningful variable and symbol names in examples>.

=head3 Inline code and literals

Within a paragraph of text, use C<CE<lt>...E<gt>> when quoting or
referring to any bit of Perl code--even if it is only one character
long.

For instance, when referring within an explanatory paragraph to Perl's
operator for adding two numbers together, you'd write "C<CE<lt>+E<gt>>".

=head3 Function names

Use C<CE<lt>...E<gt>> to render all Perl function names in monospace,
whenever they appear in text.

Unless you need to specifically quote a function call with a list of
arguments, do not follow a function's name in text with a pair of empty
parentheses. That is, when referring in general to Perl's C<print>
function, write it as "C<print>", not "C<print()>".

=head3 Function arguments

Represent functions' expected arguments in all-caps, with no sigils, and
using C<CE<lt>...E<gt>> to render them in monospace. These arguments
should have short names making their nature and purpose clear.
Convention specifies a few ones commonly seen throughout Perl's
documentation:

=over

=item *

EXPR

The "generic" argument: any scalar value, or a Perl expression that
evaluates to one.

=item *

ARRAY

An array, stored in a named variable.

=item *

HASH

A hash, stored in a named variable.

=item *

BLOCK

A curly-braced code block, or a subroutine reference.

=item *

LIST

Any number of values, stored across any number of variables or
expressions, which the function will "flatten" and treat as a single
list. (And because it can contain any number of variables, it must be
the I<last> argument, when present.)

=back

When possible, give scalar arguments names that suggest their purpose
among the arguments. See, for example, L<C<substr>'s
documentation|perlfunc/substr>, whose
listed arguments include C<EXPR>, C<OFFSET>, C<LENGTH>, and C<REPLACEMENT>.

=head3 Apostrophes, quotes, and dashes

In Pod source, use straight quotes, and not "curly quotes":  "Like
 this", not “like this”. The same goes for apostrophes:  Here's a
 positive example, and here’s a negative one.

Render em dashes as two hyphens--like this:

    Render em dashes as two hyphens--like this.

Leave it up to formatters to reformat and reshape these punctuation
marks as best fits their respective target media.

=head3 Unix programs and C functions

When referring to a Unix program or C function with its own man page
(outside of Perl's documentation), include its manual section number in
parentheses. For example: C<malloc(3)>, or C<mkdir(1)>.

If mentioning this program for the first time within a man page or
section, make it a cross reference, e.g. C<LE<lt>malloc(3)E<gt>>.

Do not otherwise style this text.

=head3 Cross-references and hyperlinks

Make generous use of Pod's C<LE<lt>...E<gt>> syntax to create hyperlinks
to other parts of the current man page, or to other documents entirely
-- whether elsewhere on the reader's computer, or somewhere on the
internet, via URL.

Use C<LE<lt>...E<gt>> to link to another section of the current man page
when mentioning it, and make use of its page-and-section syntax to link to
the most specific section of a separate page within Perl's
documentation. Generally, the first time you refer to a specific
function, program, or concept within a certain page or section, consider
linking to its full documentation.

Hyperlinks do not supersede other formatting required by this guide; Pod
allows nested text formats, and you should use this feature as needed.

Here is an example sentence that mentions Perl's C<say> function, with a
link to its documentation section within the C<perlfunc> man page:

    In version 5.10, Perl added support for the 
    L<C<say>|perlfunc/say FILEHANDLE LIST> function.

Note the use of the vertical pipe ("C<|>") to separate how the link will
appear to readers ("C<CE<lt>sayE<gt>>") from the full page-and-section specifier
that the formatter links to.

=head3 Tables and diagrams

Pod does not officially support tables. To best present tabular data,
include the table as both HTML and plain-text representations--the
latter as an indented code block. Use C<=begin> / C<=end> directives to
target these tables at C<html> and C<text> Pod formatters, respectively.
For example:

    =head2 Table of fruits

    =begin text

     Name           Shape           Color
     =====================================
     Apple          Round           Red
     Banana         Long            Yellow
     Pear           Pear-shaped     Green

    =end text

    =begin html

    <table>
    <tr><th>Name</th><th>Shape</th><th>Color</th></tr>
    <tr><td>Apple</td><td>Round</td><td>Red</td></tr>
    <tr><td>Banana</td><td>Long</td><td>Yellow</td></tr>
    <tr><td>Pear</td><td>Pear-shaped</td><td>Green</td></tr>
    </table>

    =end html

The same holds true for figures and graphical illustrations. Pod does
not natively support inline graphics, but you can mix HTML C<<< <img> >>> tags
with monospaced text-art representations of those images' content.

Due in part to these limitations, most Perl man pages use neither tables
nor diagrams. Like any other tool in your documentation toolkit,
however, you may consider their inclusion when they would improve an
explanation's clarity without adding to its complexity.

=head2 Adding comments

Like any other kind of source code, Pod lets you insert comments visible
only to other people reading the source directly, and ignored by the
formatting programs that transform Pod into various human-friendly
output formats (such as HTML or PDF). 

To comment Pod text, use the C<=for> and C<=begin> / C<=end> Pod
directives, aiming them at a (notional) formatter called "C<comment>". A
couple of examples:

    =for comment Using "=for comment" like this is good for short,
    single-paragraph comments.

    =begin comment

    If you need to comment out more than one paragraph, use a
    =begin/=end block, like this.

    None of the text or markup in this whole example would be visible to
    someone reading the documentation through normal means, so it's
    great for leaving notes, explanations, or suggestions for your
    fellow documentation writers.

    =end comment

In the tradition of any good open-source project, you should make free
but judicious use of comments to leave in-line "meta-documentation" as
needed for other Perl documentation writers (including your future
self).

=head2 Perlfunc has special rules

The L<C<perlfunc> man page|perlfunc>, an exhaustive reference of every
Perl built-in function, has a handful of formatting rules not seen
elsewhere in Perl's documentation.

Software used during Perl's build process
(L<Pod::Functions|Pod::Functions>) parses this page according to certain
rules, in order to build separate man pages for each of Perl's
functions, as well as achieve other indexing effects. As such,
contributors to perlfunc must know about and adhere to its particular
rules.

Most of the perfunc man page comprises a single list, found under the
header L<"Alphabetical Listing of Perl Functions"|perlfunc/Alphabetical
Listing of Perl Functions>. Each function reference is an entry on that
list, made of three parts, in order:

=over

=item 1.

A list of C<=item> lines which each demonstrate, in template format, a
way to call this function. One line should exist for every combination
of arguments that the function accepts (including no arguments at all,
if applicable).

If modern best practices prefer certain ways to invoke the function
over others, then those ways should lead the list.

The first item of the list should be immediately followed by one or
more C<XE<lt>...E<gt>> terms listing index-worthy topics; if nothing
else, then the name of the function, with no arguments.

=item 2.

A C<=for> line, directed at C<Pod::Functions>, containing a one-line
description of what the function does. This is written as a phrase, led
with an imperative verb, with neither leading capitalization nor ending
punctuation. Examples include "quote a list of words" and "change a
filename".

=item 3.

The function's definition and reference material, including all
explanatory text and code examples.

=back

Complex functions that need their text divided into subsections (under
the principles of L<"Apply section-breaks and examples
generously"|/Apply section-breaks and examples generously>) may do so by
using sublists, with C<=item> elements as header text.

A fictional function "C<myfunc>", which takes a list as an optional
argument, might have an entry in perlfunc shaped like this:

    =item myfunc LIST
    X<myfunc>

    =item myfunc

    =for Pod::Functions demonstrate a function's perlfunc section 

    [ Main part of function definition goes here, with examples ]

    =over

    =item Legacy uses

    [ Examples of deprecated syntax still worth documenting ]

    =item Security considerations

    [ And so on... ]

    =back

=head1 TONE AND STYLE

=head2 Apply one of the four documentation modes

Aside from "meta" documentation such as C<perlhist> or C<perlartistic>,
each of Perl's man pages should conform to one of the four documentation
"modes" suggested by L<I<The Documentation System> by Daniele
Procida|https://documentation.divio.com>. These include tutorials,
cookbooks, explainers, and references--terms that we define in further
detail below.

Each mode of documentation speaks to a different audience--not just
people of different backgrounds and skill levels, but individual readers
whose needs from language documentation can shift depending upon
context. For example, a programmer with plenty of time to learn a new
concept about Perl can ease into a tutorial about it, and later expand
their knowledge further by studying an explainer. Later, that same
programmer, wading knee-deep in live code and needing only to look up
some function's exact syntax, will want to reach for a reference page
instead.

Perl's documentation must strive to meet these different situational
expectations by limiting each man page to a single mode. This helps
writers ensure they provide readers with the documentation needed or
expected, despite ever-evolving situations.

=head3 Tutorial

A tutorial man page focuses on B<learning>, ideally by I<doing>. It
presents the reader with small, interesting examples that allow them to
follow along themselves using their own Perl interpreter. The tutorial
inspires comprehension by letting its readers immediately experience
(and experiment on) the concept in question. Examples include
C<perlxstut>, C<perlpacktut>, and
C<perlretut>.

Tutorial man pages must strive for a welcoming and reassuring tone from
their outset; they may very well be the first things that a newcomer to
Perl reads, playing a significant role in whether they choose
to stick around. Even an experienced programmer can benefit from the
sense of courage imparted by a strong tutorial about a more advanced
topic. After completing a tutorial, a reader should feel like they've
been led from zero knowledge of its topic to having an invigorating
spark of basic understanding, excited to learn more and experiment
further.

Tutorials can certainly use real-world examples when that helps make for
clear, relatable demonstrations, so long as they keep the focus on
teaching--more practical problem-solving should be left to the realm
of cookbooks (as described below). Tutorials also needn't concern
themselves with explanations into why or how things work beneath the
surface, or explorations of alternate syntaxes and solutions; these are
better handled by explainers and reference pages.

=head3 Cookbook

A cookbook man page focuses on B<results>. Just like its name suggests,
it presents succinct, step-by-step solutions to a variety of real-world
problems around some topic. A cookbook's code examples serve less to
enlighten and more to provide quick, paste-ready solutions that the
reader can apply immediately to the situation facing them.

A Perl cookbook demonstrates ways that all the tools and techniques
explained elsewhere can work together in order to achieve practical
results. Any explanation deeper than that belongs in explainers and
reference pages, instead. (Certainly, a cookbook can cross-reference
other man pages in order to satisfy the curiosity of readers who, with
their immediate problems solved, wish to learn more.)

The most prominent cookbook pages that ship with Perl itself are its
many FAQ pages, in particular C<perlfaq4> and up, which provide short
solutions to practical questions in question-and-answer style.
C<perlunicook> shows another example, containing a bevy of practical code
snippets for a variety of internationally minded text manipulations.

(An aside: I<The Documentation System> calls this mode "how-to", but
Perl's history of creative cuisine prefers the more kitchen-ready term
that we employ here.)

=head3 Reference

A reference page focuses on B<description>. Austere, uniform, and
succinct, reference pages--often arranged into a whole section of
mutually similar subpages--lend themselves well to "random access" by
a reader who knows precisely what knowledge they need, requiring only
the minimum amount of information before returning to the task at hand.

Perl's own best example of a reference work is C<perlfunc>, the
sprawling man page that details the operation of every function built
into Perl, with each function's documentation presenting the same kinds
of information in the same order as every other. For an example of a
shorter reference on a single topic, look at C<perlreref>.

Module documentation--including that of all the modules listed in
L<C<perlmodlib>|perlmodlib>--also counts as reference. They follow
precepts similar to those laid down by the C<perlpodstyle> man page, such
as opening with an example-laden "SYNOPSIS" section, or featuring a
"METHODS" section that succinctly lists and defines an object-oriented
module's public interface.

=head3 Explainer

Explainer pages focus on B<discussion>. Each explainer dives as deep as
needed into some Perl-relevant topic, taking all the time and space
needed to give the reader a thorough understanding of it. Explainers
mean to impart knowledge through study. They don't assume that the
student has a Perl interpreter fired up and hungry for immediate examples
(as with a tutorial), or specific Perl problems that they need quick
answers for (which cookbooks and reference pages can help with).

Outside of its reference pages, most of Perl's manual belongs to this
mode. This includes the majority of the man pages whose names start with
"C<perl>". A fine example is C<perlsyn>, the Perl Syntax page, which
explores the whys and wherefores of Perl's unique syntax in a
wide-ranging discussion laden with many references to the language's
history, culture, and driving philosophies.

Perl's explainer pages give authors a chance to explore Perl's penchant
for L<TMTOWTDI|perlglossary/TMTOWTDI>, illustrating alternate and even
obscure ways to use the language feature under discussion. However, as
the remainder of this guide discusses, the ideal Perl documentation
manages to deliver its message clearly and concisely, and not confuse
mere wordiness for completeness.

=head3 Further notes on documentation modes

Keep in mind that the purpose of this categorization is not to dictate
content--a very thorough explainer might contain short reference
sections of its own, for example, or a reference page about a very
complex function might resemble an explainer in places (e.g.
L<C<open>|perlfunc/open FILEHANDLE,MODE,EXPR>). Rather, it makes sure
that the authors and contributors of any given man page agree on what
sort of audience that page addresses.

If a new or otherwise uncategorized man page presents itself as
resistant to fitting into only one of the four modes, consider breaking
it up into separate pages. That may mean creating a new "C<perl[...]>"
man page, or (in the case of module documentation) making new packages
underneath that module's namespace that serve only to hold additional
documentation. For instance, C<Example::Module>'s reference documentation
might include a see-also link to C<Example::Module::Cookbook>.

Perl's several man pages about Unicode--comprising a short tutorial, a
thorough explainer, a cookbook, and a FAQ--provide a fine example of
spreading a complicated topic across several man pages with different
and clearly indicated purposes.

=head2 Assume readers' intelligence, but not their knowledge

Perl has grown a great deal from its humble beginnings as a tool for
people already well versed in C programming and various Unix utilities.
Today, a person learning Perl might come from any social or
technological background, with a range of possible motivations
stretching far beyond system administration.

Perl's core documentation must recognize this by making as few
assumptions as possible about the reader's prior knowledge. While you
should assume that readers of Perl's documentation are smart, curious,
and eager to learn, you should not confuse this for pre-existing
knowledge about any other technology, or even programming in
general--especially in tutorial or introductory material.

=head3 Keep Perl's documentation about Perl

Outside of pages tasked specifically with exploring Perl's relationship
with other programming languages, the documentation should keep the
focus on Perl. Avoid drawing analogies to other technologies that the
reader may not have familiarity with.

For example, when documenting one of Perl's built-in functions, write as
if the reader is now learning about that function for the first time, in
any programming language.

Choosing to instead compare it to an equivalent or underlying C function
will probably not illuminate much understanding in a contemporary
reader. Worse, this can risk leaving readers unfamiliar with C feeling
locked out from fully understanding of the topic--to say nothing of
readers new to computer programming altogether.

If, however, that function's ties to its C roots can lead to deeper
understanding with practical applications for a Perl programmer, you may
mention that link after its more immediately useful documentation.
Otherwise, omit this information entirely, leaving it for other
documentation or external articles more concerned with examining Perl's
underlying implementation details.

=head3 Deploy jargon when needed, but define it as well

Domain-specific jargon has its place, especially within documentation.
However, if a man page makes use of jargon that a typical reader might
not already know, then that page should make an effort to define the
term in question early-on--either explicitly, or via cross reference.

For example, Perl loves working with filehandles, and as such that word
appears throughout its documentation. A new Perl programmer arriving at
a man page for the first time is quite likely to have no idea what a
"filehandle" is, though. Any Perl man page mentioning filehandles
should, at the very least, hyperlink that term to an explanation
elsewhere in Perl's documentation. If appropriate--for example, in the
lead-in to L<C<open> function's detailed reference|perlfunc/open
FILEHANDLE,MODE,EXPR>--it can also include a very short in-place
definition of the concept for the reader's convenience.

=head2 Use meaningful variable and symbol names in examples

When quickly sketching out examples, English-speaking programmers have a
long tradition of using short nonsense words as placeholders for
variables and other symbols--such as the venerable C<foo>, C<bar>, and
C<baz>. Example code found in a programming language's official,
permanent documentation, however, can and should make an effort to
provide a little more clarity through specificity.

Whenever possible, code examples should give variables, classes, and
other programmer-defined symbols names that clearly demonstrate their
function and their relationship to one another. For example, if an
example requires that one class show an "is-a" relationship with
another, consider naming them something like C<Apple> and C<Fruit>, rather
than C<Foo> and C<Bar>. Similarly, sample code creating an instance of
that class would do better to name it C<$apple>, rather than C<$baz>.

Even the simplest examples benefit from clear language using concrete
words. Prefer a construct like C<for my $item (@items) { ... }> over
C<for my $blah (@blah) { ... }>.

=head2 Write in English, but not just for English-speakers

While this style guide does specify American English as the
documentation's language for the sake of internal consistency, authors
should avoid cultural or idiomatic references available only to
English-speaking Americans (or any other specific culture or society).
As much as possible, the language employed by Perl's core documentation
should strive towards cultural universality, if not neutrality. Regional
turns of phrase, examples drawing on popular-culture knowledge, and
other rhetorical techniques of that nature should appear sparingly, if
at all.

Authors should feel free to let more freewheeling language flourish in
"second-order" documentation about Perl, like books, blog entries, and
magazine articles, published elsewhere and with a narrower readership in
mind. But Perl's own docs should use language as accessible and
welcoming to as wide an audience as possible.

=head2 Omit placeholder text or commentary

Placeholder text does not belong in the documentation that ships with
Perl. No section header should be followed by text reading only "Watch
this space", "To be included later", or the like. While Perl's source
files may shift and alter as much as any other actively maintained
technology, each released iteration of its technology should feel
complete and self-contained, with no such future promises or other loose
ends visible.

Take advantage of Perl's regular release cycle. Instead of cluttering
the docs with flags promising more information later--the presence of
which do not help readers at all today--the documentation's
maintenance team should treat any known documentation absences as an
issue to address like any other in the Perl project. Let Perl's
contributors, testers, and release engineers address that need, and
resist the temptation to insert apologies, which have all the utility in
documentation as undeleted debug messages do in production code.

=head2 Apply section-breaks and examples generously

No matter how accessible their tone, the sight of monolithic blocks of
text in technical documentation can present a will-weakening challenge
for the reader. Authors can improve this situation through breaking long
passages up into subsections with short, meaningful headers.

Since every section-header in Pod also acts as a potential end-point for
a cross-reference (made via Pod's C<LE<lt>...E<gt>> syntax), putting
plenty of subsections in your documentation lets other man pages more
precisely link to a particular topic. This creates hyperlinks directly
to the most appropriate section rather than to the whole page in
general, and helps create a more cohesive sense of a rich, consistent,
and interrelated manual for readers.

Among the four documentation modes, sections belong more naturally in
tutorials and explainers. The step-by-step instructions of cookbooks, or
the austere definitions of reference pages, usually have no room for
them. But authors can always make exceptions for unusually complex
concepts that require further breakdown for clarity's sake.

Example code, on the other hand, can be a welcome addition to any mode
of documentation. Code blocks help break up a man page visually,
reassuring the reader that no matter how deep the textual explanation
gets, they are never far from another practical example showing how it
all comes together using a small, easy-to-read snippet of tested Perl
code.

=head2 Lead with common cases and best practices

Perl famously gives programmers more than one way to do things. Like any
other long-lived programming language, Perl has also built up a large,
community-held notion of best practices, blessing some ways to do things
as better than others, usually for the sake of more maintainable code.

=head3 Show the better ways first

Whenever it needs to show the rules for a technique which Perl provides
many avenues for, the documentation should always lead with best
practices. And when discussing some part of the Perl toolkit with many
applications, the docs should begin with a demonstration of its
application to the most common cases.

The C<open> function, for example, has myriad potential uses within Perl
programs, but I<most of the time> programmers--and especially those new
to Perl--turn to this reference because they simply wish to open a
file for reading or writing. For this reason, C<open>'s documentation
begins there, and only descends into the function's more obscure uses
after thoroughly documenting and demonstrating how it works in the
common case. Furthermore, while engaging in this demonstration, the
C<open> documentation does not burden the reader right away with detailed
explanations about calling C<open> via any route other than the
best-practice, three-argument style. 

=head3 Show the lesser ways when needed

Sometimes, thoroughness demands documentation of deprecated techniques.
For example, a certain Perl function might have an alternate syntax now
considered outmoded and no longer best-practice, but which a maintainer
of a legacy project might quite reasonably encounter when exploring old
code. In this case, these features deserve documentation, but couched in
clarity that modern Perl avoids such structures, and does not recommend
their use in new projects.

Another way to look at this philosophy (and one L<borrowed from our
friends|https://devguide.python.org/documenting/#affirmative-tone> on
Python's documentation team) involves writing while sympathizing with a
programmer new to Perl, who may feel uncertain about learning a complex
concept. By leading that concept's main documentation with clear,
positive examples, we can immediately give these readers a simple and
true picture of how it works in Perl, and boost their own confidence to
start making use of this new knowledge. Certainly we should include
alternate routes and admonitions as reasonably required, but we needn't
emphasize them. Trust the reader to understand the basics quickly, and
to keep reading for a deeper understanding if they feel so driven.

=head2 Document Perl's present

Perl's documentation should stay focused on Perl's present behavior,
with a nod to future directions.

=head3 Recount the past only when necessary

=for comment
The principles of this section caused a lot of lively discussion and
debate among p5p when first proposed in October 2020. I am keeping the
recommendations nonspecific, and expect this section to receive a lot of
further refinement as we start to apply it to core docs.

When some Perl feature changes its behavior, documentation about
that feature should change too, and just as definitively. The docs have
no obligation to keep descriptions of past behavior hanging around, even if
attaching clauses like "Prior to version 5.10, [...]".

Since Perl's core documentation is part of Perl's source distribution,
it enjoys the same benefits of versioning and version-control as the
source code of Perl itself. Take advantage of this, and update the text
boldly when needed. Perl's history remains safe, even when you delete or
replace outdated information from the current version's docs.

Perl's docs can acknowledge or discuss former behavior when warranted,
including notes that some feature appeared in the language as of some
specific version number. Authors should consider applying principles
similar to those for deprecated techniques, L<as described above|/Show
the lesser ways when needed>: make the information present, but not
prominent.

Otherwise, keep the past in the past. A manual uncluttered with
outdated instruction stays more succinct and relevant.

=head3 Describe the uncertain future with care

Perl features marked as "experimental"--those that generate warnings
when used in code not invoking the L<C<experimental>|experimental>
pragma--deserve documentation, but only in certain contexts, and even
then with caveats. These features represent possible new directions for
Perl, but they have unstable interfaces and uncertain future presence.

The documentation should take both implications of "experimental"
literally. It should not discourage these features' use by programmers
who wish to try out new features in projects that can risk their
inherent instability; this experimentation can help Perl grow and
improve. By the same token, the docs should downplay these features' use
in just about every other context.

Introductory or overview material should omit coverage of experimental
features altogether.

More thorough reference materials or explanatory articles can include
experimental features, but needs to clearly mark them as such, and not
treat them with the same prominence as Perl's stable features. Using
unstable features seldom coincides with best practices, and
documentation that L<puts best practices first|/Lead with common cases
and best practices> should reflect this.

=head2 The documentation speaks with one voice

Even though it comes from many hands and minds, criss-crossing through
the many years of Perl's lifetime, the language's documentation should
speak with a single, consistent voice. With few exceptions, the docs
should avoid explicit first-person-singular statements, or similar
self-reference to any individual's contributor's philosophies or
experiences.

Perl did begin life as a deeply personal expression by a single
individual, and this famously carried through the first revisions of its
documentation as well. Today, Perl's community understands that the
language's continued development and support comes from many people
working in concert, rather than any one person's vision or effort. Its
documentation should not pretend otherwise.

The documentation should, however, carry forward the best tradition that
Larry Wall set forth in the language's earliest days: Write both
economically and with a humble, subtle wit, resulting in a technical
manual that mixes concision with a friendly approachability. It avoids
the dryness that one might expect from technical documentation, while
not leaning so hard into overt comedy as to distract and confuse from
the nonetheless-technical topics at hand.

Like the best written works, Perl's documentation has a soul. Get
familiar with it as a reader to internalize its voice, and then find
your own way to express it in your own contributions. Writing clearly,
succinctly, and with knowledge of your audience's expectations will get
you most of the way there, in the meantime.

Every line in the docs--whether English sentence or Perl
statement--should serve the purpose of bringing understanding to the
reader. Should a sentence exist mainly to make a wry joke that doesn't
further the reader's knowledge of Perl, set it aside, and consider
recasting it into a personal blog post or other article instead.

Write with a light heart, and a miserly hand. 

=head1 INDEX OF PREFERRED TERMS

L<As noted above|/Choice of underlying style guide: CMOS>, this guide
"inherits" all the preferred terms listed in the Chicago Manual of
Style, 17th edition, and adds the following terms of particular interest
to Perl documentation.

=over

=item built-in function

Not "builtin".

=item Darwin

See L<macOS|/macOS>.

=item macOS

Use this term for Apple's operating system instead of "Mac OS X" or
variants thereof.

This term is also preferable to "Darwin", unless one needs to refer
to macOS's Unix layer specifically.

=item man page

One unit of Unix-style documentation. Not "manpage". Preferable to "manual page".

=item Perl; perl

The name of the programming language is Perl, with a leading capital
"P", and the remainder in lowercase. (Never "PERL".)

The interpreter program that reads and executes Perl code is named
"C<perl>", in lowercase and in monospace (as with any other command
name).

Generally, unless you are specifically writing about the
command-line C<perl> program (as, for example, L<C<perlrun>|perlrun>
does), use "Perl" instead.

=item Perl 5

Documentation need not follow Perl's name with a "5", or any other
number, except during discussions of Perl's history, future plans,
or explicit comparisons between major Perl versions.

Before 2019, specifying "Perl 5" was sometimes needed to distinguish
the language from Perl 6. With the latter's renaming to "Raku", this
practice became unnecessary.

=item Perl 6

See L<Raku|/Raku>.

=item Perl 5 Porters, the; porters, the; p5p

The full name of the team responsible for Perl's ongoing maintenance
and development is "the Perl 5 Porters", and this sobriquet should
be spelled out in the first mention within any one document. It may
thereafter call the team "the porters" or "p5p".

Not "Perl5 Porters".

=item program

The most general descriptor for a stand-alone work made out of
executable Perl code. Synonymous with, and preferable to, "script".

=item Raku

Perl's "sister language", whose homepage is L<https://raku.org>.

Previously known as "Perl 6". In 2019, its design team renamed the
language to better reflect its identity as a project independent from
Perl. As such, Perl's documentation should always refer to this language
as "Raku" and not "Perl 6".

=item script

See L<program|/program>.

=item semicolon

Perl code's frequently overlooked punctuation mark. Not "semi-colon".

=item Unix

Not "UNIX", "*nix", or "Un*x". Applicable to both the original operating
system from the 1970s as well as all its conceptual descendants. You may
simply write "Unix" and not "a Unix-like operating system" when
referring to a Unix-like operating system.

=back

=head1 SEE ALSO

=over

=item *

L<perlpod|perlpod>

=item *

L<perlpodstyle|perlpodstyle>

=back

=head1 AUTHOR

This guide was initially drafted by Jason McIntosh
(jmac@jmac.org), under a grant from The Perl Foundation.

=for comment Additional contributors can get listed here (and this
comment deleted), when there are some.