This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade to Time-HiRes-1.76
[perl5.git] / pod / perlpod.pod
CommitLineData
8a93676d
SB
1
2=for comment
3This document is in Pod format. To read this, use a Pod formatter,
4like "perldoc perlpod".
5
a0d0e21e 6=head1 NAME
d74e8afc 7X<POD> X<plain old documentation>
a0d0e21e 8
8a93676d 9perlpod - the Plain Old Documentation format
a0d0e21e
LW
10
11=head1 DESCRIPTION
12
8a93676d
SB
13Pod is a simple-to-use markup language used for writing documentation
14for Perl, Perl programs, and Perl modules.
15
16Translators are available for converting Pod to various formats
17like plain text, HTML, man pages, and more.
18
19Pod markup consists of three basic kinds of paragraphs:
20L<ordinary|/"Ordinary Paragraph">,
21L<verbatim|/"Verbatim Paragraph">, and
22L<command|/"Command Paragraph">.
23
24
25=head2 Ordinary Paragraph
d74e8afc 26X<POD, ordinary paragraph>
8a93676d
SB
27
28Most paragraphs in your documentation will be ordinary blocks
29of text, like this one. You can simply type in your text without
30any markup whatsoever, and with just a blank line before and
31after. When it gets formatted, it will undergo minimal formatting,
32like being rewrapped, probably put into a proportionally spaced
33font, and maybe even justified.
34
35You can use formatting codes in ordinary paragraphs, for B<bold>,
36I<italic>, C<code-style>, L<hyperlinks|perlfaq>, and more. Such
37codes are explained in the "L<Formatting Codes|/"Formatting Codes">"
38section, below.
39
a0d0e21e 40
b74bceb9 41=head2 Verbatim Paragraph
d74e8afc 42X<POD, verbatim paragraph> X<verbatim>
a0d0e21e 43
8a93676d
SB
44Verbatim paragraphs are usually used for presenting a codeblock or
45other text which does not require any special parsing or formatting,
46and which shouldn't be wrapped.
47
48A verbatim paragraph is distinguished by having its first character
49be a space or a tab. (And commonly, all its lines begin with spaces
50and/or tabs.) It should be reproduced exactly, with tabs assumed to
51be on 8-column boundaries. There are no special formatting codes,
52so you can't italicize or anything like that. A \ means \, and
53nothing else.
54
a0d0e21e 55
b74bceb9 56=head2 Command Paragraph
d74e8afc 57X<POD, command>
b74bceb9 58
8a93676d
SB
59A command paragraph is used for special treatment of whole chunks
60of text, usually as headings or parts of lists.
61
62All command paragraphs (which are typically only one line long) start
63with "=", followed by an identifier, followed by arbitrary text that
64the command can use however it pleases. Currently recognized commands
65are
a0d0e21e 66
8a93676d
SB
67 =head1 Heading Text
68 =head2 Heading Text
69 =head3 Heading Text
70 =head4 Heading Text
71 =over indentlevel
72 =item stuff
a0d0e21e 73 =back
4633a7c4 74 =cut
cb1a09d0 75 =pod
8a93676d
SB
76 =begin format
77 =end format
78 =for format text...
79
80To explain them each in detail:
81
82=over
83
84=item C<=head1 I<Heading Text>>
d74e8afc
ITB
85X<=head1> X<=head2> X<=head3> X<=head4>
86X<head1> X<head2> X<head3> X<head4>
cb1a09d0 87
8a93676d 88=item C<=head2 I<Heading Text>>
b74bceb9 89
8a93676d 90=item C<=head3 I<Heading Text>>
b74bceb9 91
8a93676d 92=item C<=head4 I<Heading Text>>
b74bceb9 93
8a93676d
SB
94Head1 through head4 produce headings, head1 being the highest
95level. The text in the rest of this paragraph is the content of the
96heading. For example:
cb1a09d0 97
8a93676d 98 =head2 Object Attributes
b74bceb9 99
8a93676d
SB
100The text "Object Attributes" comprises the heading there. (Note that
101head3 and head4 are recent additions, not supported in older Pod
102translators.) The text in these heading commands can use
103formatting codes, as seen here:
b74bceb9 104
8a93676d 105 =head2 Possible Values for C<$/>
c6b85e5d 106
8a93676d
SB
107Such commands are explained in the
108"L<Formatting Codes|/"Formatting Codes">" section, below.
c6b85e5d 109
8a93676d 110=item C<=over I<indentlevel>>
d74e8afc 111X<=over> X<=item> X<=back> X<over> X<item> X<back>
cb1a09d0 112
8a93676d 113=item C<=item I<stuff...>>
b74bceb9 114
8a93676d 115=item C<=back>
b74bceb9 116
8a93676d
SB
117Item, over, and back require a little more explanation: "=over" starts
118a region specifically for the generation of a list using "=item"
119commands, or for indenting (groups of) normal paragraphs. At the end
120of your list, use "=back" to end it. The I<indentlevel> option to
121"=over" indicates how far over to indent, generally in ems (where
122one em is the width of an "M" in the document's base font) or roughly
123comparable units; if there is no I<indentlevel> option, it defaults
124to four. (And some formatters may just ignore whatever I<indentlevel>
125you provide.) In the I<stuff> in C<=item I<stuff...>>, you may
126use formatting codes, as seen here:
b74bceb9 127
8a93676d 128 =item Using C<$|> to Control Buffering
cb1a09d0 129
8a93676d
SB
130Such commands are explained in the
131"L<Formatting Codes|/"Formatting Codes">" section, below.
b74bceb9 132
8a93676d
SB
133Note also that there are some basic rules to using "=over" ...
134"=back" regions:
b74bceb9 135
8a93676d 136=over
b74bceb9 137
8a93676d
SB
138=item *
139
140Don't use "=item"s outside of an "=over" ... "=back" region.
141
142=item *
c7c9f956 143
8a93676d
SB
144The first thing after the "=over" command should be an "=item", unless
145there aren't going to be any items at all in this "=over" ... "=back"
146region.
147
148=item *
149
150Don't put "=headI<n>" commands inside an "=over" ... "=back" region.
151
152=item *
153
154And perhaps most importantly, keep the items consistent: either use
155"=item *" for all of them, to produce bullets; or use "=item 1.",
156"=item 2.", etc., to produce numbered lists; or use "=item foo",
157"=item bar", etc. -- namely, things that look nothing like bullets or
158numbers.
159
160If you start with bullets or numbers, stick with them, as
161formatters use the first "=item" type to decide how to format the
162list.
163
164=back
165
166=item C<=cut>
d74e8afc 167X<=cut> X<cut>
8a93676d
SB
168
169To end a Pod block, use a blank line,
170then a line beginning with "=cut", and a blank
171line after it. This lets Perl (and the Pod formatter) know that
172this is where Perl code is resuming. (The blank line before the "=cut"
173is not technically necessary, but many older Pod processors require it.)
174
175=item C<=pod>
d74e8afc 176X<=pod> X<pod>
8a93676d
SB
177
178The "=pod" command by itself doesn't do much of anything, but it
179signals to Perl (and Pod formatters) that a Pod block starts here. A
180Pod block starts with I<any> command paragraph, so a "=pod" command is
181usually used just when you want to start a Pod block with an ordinary
182paragraph or a verbatim paragraph. For example:
183
184 =item stuff()
210b36aa 185
8a93676d 186 This function does stuff.
210b36aa 187
8a93676d 188 =cut
210b36aa 189
8a93676d
SB
190 sub stuff {
191 ...
192 }
210b36aa 193
8a93676d 194 =pod
210b36aa 195
8a93676d 196 Remember to check its return value, as in:
210b36aa
AMS
197
198 stuff() || die "Couldn't do stuff!";
199
8a93676d
SB
200 =cut
201
202=item C<=begin I<formatname>>
d74e8afc 203X<=begin> X<=end> X<=for> X<begin> X<end> X<for>
8a93676d
SB
204
205=item C<=end I<formatname>>
206
207=item C<=for I<formatname> I<text...>>
208
209For, begin, and end will let you have regions of text/code/data that
210are not generally interpreted as normal Pod text, but are passed
211directly to particular formatters, or are otherwise special. A
212formatter that can use that format will use the region, otherwise it
213will be completely ignored.
214
215A command "=begin I<formatname>", some paragraphs, and a
216command "=end I<formatname>", mean that the text/data inbetween
217is meant for formatters that understand the special format
218called I<formatname>. For example,
219
220 =begin html
210b36aa 221
8a93676d 222 <hr> <img src="thang.png">
c7c9f956 223 <p> This is a raw HTML paragraph </p>
210b36aa 224
8a93676d
SB
225 =end html
226
227The command "=for I<formatname> I<text...>"
228specifies that the remainder of just this paragraph (starting
229right after I<formatname>) is in that special format.
230
231 =for html <hr> <img src="thang.png">
232 <p> This is a raw HTML paragraph </p>
233
234This means the same thing as the above "=begin html" ... "=end html"
235region.
c7c9f956 236
8a93676d
SB
237That is, with "=for", you can have only one paragraph's worth
238of text (i.e., the text in "=foo targetname text..."), but with
239"=begin targetname" ... "=end targetname", you can have any amount
240of stuff inbetween. (Note that there still must be a blank line
241after the "=begin" command and a blank line before the "=end"
242command.
c7c9f956
KA
243
244Here are some examples of how to use these:
245
8a93676d
SB
246 =begin html
247
248 <br>Figure 1.<br><IMG SRC="figure1.png"><br>
249
250 =end html
251
252 =begin text
253
254 ---------------
255 | foo |
256 | bar |
257 ---------------
a6006777 258
8a93676d 259 ^^^^ Figure 1. ^^^^
a6006777 260
8a93676d 261 =end text
a6006777 262
8a93676d
SB
263Some format names that formatters currently are known to accept
264include "roff", "man", "latex", "tex", "text", and "html". (Some
265formatters will treat some of these as synonyms.)
a6006777 266
8a93676d
SB
267A format name of "comment" is common for just making notes (presumably
268to yourself) that won't appear in any formatted version of the Pod
269document:
a6006777 270
8a93676d
SB
271 =for comment
272 Make sure that all the available options are documented!
a6006777 273
8a93676d
SB
274Some I<formatnames> will require a leading colon (as in
275C<"=for :formatname">, or
276C<"=begin :formatname" ... "=end :formatname">),
277to signal that the text is not raw data, but instead I<is> Pod text
278(i.e., possibly containing formatting codes) that's just not for
279normal formatting (e.g., may not be a normal-use paragraph, but might
280be for formatting as a footnote).
c7c9f956 281
a179871b 282=item C<=encoding I<encodingname>>
d74e8afc 283X<=encoding> X<encoding>
a179871b
SB
284
285This command is used for declaring the encoding of a document. Most
286users won't need this; but if your encoding isn't US-ASCII or Latin-1,
287then put a C<=encoding I<encodingname>> command early in the document so
288that pod formatters will know how to decode the document. For
289I<encodingname>, use a name recognized by the L<Encode::Supported>
290module. Examples:
291
292 =encoding utf8
293
294 =encoding koi8-r
295
296 =encoding ShiftJIS
297
298 =encoding big5
299
8a93676d 300=back
c7c9f956 301
8a93676d
SB
302And don't forget, when using any command, that the command lasts up
303until the end of its I<paragraph>, not its line. So in the
304examples below, you can see that every command needs the blank
305line after it, to end its paragraph.
cb1a09d0
AD
306
307Some examples of lists include:
308
8a93676d
SB
309 =over
310
311 =item *
312
313 First item
314
315 =item *
316
317 Second item
318
319 =back
320
321 =over
322
323 =item Foo()
324
325 Description of Foo function
326
327 =item Bar()
cb1a09d0 328
8a93676d 329 Description of Bar function
cb1a09d0 330
8a93676d 331 =back
cb1a09d0 332
cb1a09d0 333
8a93676d 334=head2 Formatting Codes
d74e8afc
ITB
335X<POD, formatting code> X<formatting code>
336X<POD, interior sequence> X<interior sequence>
cb1a09d0 337
8a93676d
SB
338In ordinary paragraphs and in some command paragraphs, various
339formatting codes (a.k.a. "interior sequences") can be used:
cb1a09d0 340
8a93676d
SB
341=for comment
342 "interior sequences" is such an opaque term.
343 Prefer "formatting codes" instead.
cb1a09d0 344
8a93676d 345=over
cb1a09d0 346
8a93676d 347=item C<IE<lt>textE<gt>> -- italic text
d74e8afc 348X<I> X<< IZ<><> >> X<POD, formatting code, italic> X<italic>
cb1a09d0 349
8a93676d
SB
350Used for emphasis ("C<be IE<lt>careful!E<gt>>") and parameters
351("C<redo IE<lt>LABELE<gt>>")
352
353=item C<BE<lt>textE<gt>> -- bold text
d74e8afc 354X<B> X<< BZ<><> >> X<POD, formatting code, bold> X<bold>
8a93676d
SB
355
356Used for switches ("C<perl's BE<lt>-nE<gt> switch>"), programs
357("C<some systems provide a BE<lt>chfnE<gt> for that>"),
358emphasis ("C<be BE<lt>careful!E<gt>>"), and so on
359("C<and that feature is known as BE<lt>autovivificationE<gt>>").
360
361=item C<CE<lt>codeE<gt>> -- code text
d74e8afc 362X<C> X<< CZ<><> >> X<POD, formatting code, code> X<code>
8a93676d
SB
363
364Renders code in a typewriter font, or gives some other indication that
365this represents program text ("C<CE<lt>gmtime($^T)E<gt>>") or some other
366form of computerese ("C<CE<lt>drwxr-xr-xE<gt>>").
367
368=item C<LE<lt>nameE<gt>> -- a hyperlink
d74e8afc 369X<L> X<< LZ<><> >> X<POD, formatting code, hyperlink> X<hyperlink>
8a93676d
SB
370
371There are various syntaxes, listed below. In the syntaxes given,
372C<text>, C<name>, and C<section> cannot contain the characters
373'/' and '|'; and any '<' or '>' should be matched.
374
375=over
376
377=item *
cb1a09d0 378
8a93676d 379C<LE<lt>nameE<gt>>
cb1a09d0 380
8a93676d
SB
381Link to a Perl manual page (e.g., C<LE<lt>Net::PingE<gt>>). Note
382that C<name> should not contain spaces. This syntax
383is also occasionally used for references to UNIX man pages, as in
384C<LE<lt>crontab(5)E<gt>>.
385
386=item *
387
388C<LE<lt>name/"sec"E<gt>> or C<LE<lt>name/secE<gt>>
389
390Link to a section in other manual page. E.g.,
391C<LE<lt>perlsyn/"For Loops"E<gt>>
392
393=item *
394
395C<LE<lt>/"sec"E<gt>> or C<LE<lt>/secE<gt>> or C<LE<lt>"sec"E<gt>>
396
397Link to a section in this manual page. E.g.,
398C<LE<lt>/"Object Methods"E<gt>>
a0d0e21e 399
b74bceb9
AB
400=back
401
8a93676d
SB
402A section is started by the named heading or item. For
403example, C<LE<lt>perlvar/$.E<gt>> or C<LE<lt>perlvar/"$."E<gt>> both
404link to the section started by "C<=item $.>" in perlvar. And
405C<LE<lt>perlsyn/For LoopsE<gt>> or C<LE<lt>perlsyn/"For Loops"E<gt>>
406both link to the section started by "C<=head2 For Loops>"
407in perlsyn.
408
409To control what text is used for display, you
410use "C<LE<lt>text|...E<gt>>", as in:
411
412=over
413
414=item *
415
416C<LE<lt>text|nameE<gt>>
417
418Link this text to that manual page. E.g.,
419C<LE<lt>Perl Error Messages|perldiagE<gt>>
420
421=item *
422
423C<LE<lt>text|name/"sec"E<gt>> or C<LE<lt>text|name/secE<gt>>
424
425Link this text to that section in that manual page. E.g.,
426C<LE<lt>SWITCH statements|perlsyn/"Basic BLOCKs and Switch
427Statements"E<gt>>
428
429=item *
430
431C<LE<lt>text|/"sec"E<gt>> or C<LE<lt>text|/secE<gt>>
432or C<LE<lt>text|"sec"E<gt>>
433
434Link this text to that section in this manual page. E.g.,
435C<LE<lt>the various attributes|/"Member Data"E<gt>>
436
437=back
438
439Or you can link to a web page:
440
441=over
442
443=item *
444
445C<LE<lt>scheme:...E<gt>>
446
447Links to an absolute URL. For example,
448C<LE<lt>http://www.perl.org/E<gt>>. But note
449that there is no corresponding C<LE<lt>text|scheme:...E<gt>> syntax, for
450various reasons.
451
452=back
453
454=item C<EE<lt>escapeE<gt>> -- a character escape
d74e8afc 455X<E> X<< EZ<><> >> X<POD, formatting code, escape> X<escape>
8a93676d
SB
456
457Very similar to HTML/XML C<&I<foo>;> "entity references":
458
459=over
460
461=item *
462
463C<EE<lt>ltE<gt>> -- a literal E<lt> (less than)
464
465=item *
466
467C<EE<lt>gtE<gt>> -- a literal E<gt> (greater than)
468
469=item *
470
471C<EE<lt>verbarE<gt>> -- a literal | (I<ver>tical I<bar>)
472
473=item *
474
475C<EE<lt>solE<gt>> = a literal / (I<sol>idus)
476
477The above four are optional except in other formatting codes,
478notably C<LE<lt>...E<gt>>, and when preceded by a
479capital letter.
480
481=item *
482
483C<EE<lt>htmlnameE<gt>>
484
485Some non-numeric HTML entity name, such as C<EE<lt>eacuteE<gt>>,
486meaning the same thing as C<&eacute;> in HTML -- i.e., a lowercase
487e with an acute (/-shaped) accent.
488
489=item *
490
491C<EE<lt>numberE<gt>>
492
493The ASCII/Latin-1/Unicode character with that number. A
494leading "0x" means that I<number> is hex, as in
495C<EE<lt>0x201EE<gt>>. A leading "0" means that I<number> is octal,
496as in C<EE<lt>075E<gt>>. Otherwise I<number> is interpreted as being
497in decimal, as in C<EE<lt>181E<gt>>.
498
499Note that older Pod formatters might not recognize octal or
500hex numeric escapes, and that many formatters cannot reliably
501render characters above 255. (Some formatters may even have
502to use compromised renderings of Latin-1 characters, like
503rendering C<EE<lt>eacuteE<gt>> as just a plain "e".)
504
505=back
506
507=item C<FE<lt>filenameE<gt>> -- used for filenames
d74e8afc 508X<F> X<< FZ<><> >> X<POD, formatting code, filename> X<filename>
8a93676d
SB
509
510Typically displayed in italics. Example: "C<FE<lt>.cshrcE<gt>>"
511
512=item C<SE<lt>textE<gt>> -- text contains non-breaking spaces
d74e8afc
ITB
513X<S> X<< SZ<><> >> X<POD, formatting code, non-breaking space>
514X<non-breaking space>
8a93676d
SB
515
516This means that the words in I<text> should not be broken
517across lines. Example: S<C<SE<lt>$x ? $y : $zE<gt>>>.
518
519=item C<XE<lt>topic nameE<gt>> -- an index entry
d74e8afc 520X<X> X<< XZ<><> >> X<POD, formatting code, index entry> X<index entry>
8a93676d
SB
521
522This is ignored by most formatters, but some may use it for building
523indexes. It always renders as empty-string.
524Example: C<XE<lt>absolutizing relative URLsE<gt>>
525
526=item C<ZE<lt>E<gt>> -- a null (zero-effect) formatting code
d74e8afc 527X<Z> X<< ZZ<><> >> X<POD, formatting code, null> X<null>
8a93676d
SB
528
529This is rarely used. It's one way to get around using an
530EE<lt>...E<gt> code sometimes. For example, instead of
531"C<NEE<lt>ltE<gt>3>" (for "NE<lt>3") you could write
532"C<NZE<lt>E<gt>E<lt>3>" (the "ZE<lt>E<gt>" breaks up the "N" and
533the "E<lt>" so they can't be considered
534the part of a (fictitious) "NE<lt>...E<gt>" code.
535
536=for comment
537 This was formerly explained as a "zero-width character". But it in
538 most parser models, it parses to nothing at all, as opposed to parsing
539 as if it were a E<zwnj> or E<zwj>, which are REAL zero-width characters.
540 So "width" and "character" are exactly the wrong words.
541
542=back
543
544Most of the time, you will need only a single set of angle brackets to
545delimit the beginning and end of formatting codes. However,
546sometimes you will want to put a real right angle bracket (a
547greater-than sign, '>') inside of a formatting code. This is particularly
548common when using a formatting code to provide a different font-type for a
549snippet of code. As with all things in Perl, there is more than
550one way to do it. One way is to simply escape the closing bracket
551using an C<E> code:
5455df32
GS
552
553 C<$a E<lt>=E<gt> $b>
554
555This will produce: "C<$a E<lt>=E<gt> $b>"
556
8a93676d
SB
557A more readable, and perhaps more "plain" way is to use an alternate
558set of delimiters that doesn't require a single ">" to be escaped. With
559the Pod formatters that are standard starting with perl5.5.660, doubled
560angle brackets ("<<" and ">>") may be used I<if and only if there is
561whitespace right after the opening delimiter and whitespace right
562before the closing delimiter!> For example, the following will
563do the trick:
d74e8afc 564X<POD, formatting code, escaping with multiple brackets>
5455df32
GS
565
566 C<< $a <=> $b >>
567
568In fact, you can use as many repeated angle-brackets as you like so
569long as you have the same number of them in the opening and closing
570delimiters, and make sure that whitespace immediately follows the last
8a93676d
SB
571'<' of the opening delimiter, and immediately precedes the first '>'
572of the closing delimiter. (The whitespace is ignored.) So the
573following will also work:
d74e8afc 574X<POD, formatting code, escaping with multiple brackets>
5455df32
GS
575
576 C<<< $a <=> $b >>>
8a93676d 577 C<<<< $a <=> $b >>>>
5455df32 578
8a93676d
SB
579And they all mean exactly the same as this:
580
581 C<$a E<lt>=E<gt> $b>
582
583As a further example, this means that if you wanted to put these bits of
584code in C<C> (code) style:
585
586 open(X, ">>thing.dat") || die $!
587 $foo->bar();
588
589you could do it like so:
590
591 C<<< open(X, ">>thing.dat") || die $! >>>
592 C<< $foo->bar(); >>
5455df32 593
8a93676d
SB
594which is presumably easier to read than the old way:
595
596 C<open(X, "E<gt>E<gt>thing.dat") || die $!>
c58e3c1c 597 C<$foo-E<gt>bar();>
8a93676d
SB
598
599This is currently supported by pod2text (Pod::Text), pod2man (Pod::Man),
600and any other pod2xxx or Pod::Xxxx translators that use
601Pod::Parser 1.093 or later, or Pod::Tree 1.02 or later.
5455df32 602
b74bceb9 603=head2 The Intent
d74e8afc 604X<POD, intent of>
3141265f 605
8a93676d
SB
606The intent is simplicity of use, not power of expression. Paragraphs
607look like paragraphs (block format), so that they stand out
608visually, and so that I could run them through C<fmt> easily to reformat
609them (that's F7 in my version of B<vi>, or Esc Q in my version of
610B<emacs>). I wanted the translator to always leave the C<'> and C<`> and
611C<"> quotes alone, in verbatim mode, so I could slurp in a
612working program, shift it over four spaces, and have it print out, er,
613verbatim. And presumably in a monospace font.
614
615The Pod format is not necessarily sufficient for writing a book. Pod
616is just meant to be an idiot-proof common source for nroff, HTML,
617TeX, and other markup languages, as used for online
618documentation. Translators exist for B<pod2text>, B<pod2html>,
619B<pod2man> (that's for nroff(1) and troff(1)), B<pod2latex>, and
620B<pod2fm>. Various others are available in CPAN.
621
a0d0e21e 622
b74bceb9 623=head2 Embedding Pods in Perl Modules
d74e8afc 624X<POD, embedding>
4633a7c4 625
8a93676d
SB
626You can embed Pod documentation in your Perl modules and scripts.
627Start your documentation with an empty line, a "=head1" command at the
628beginning, and end it with a "=cut" command and an empty line. Perl
629will ignore the Pod text. See any of the supplied library modules for
630examples. If you're going to put your Pod at the end of the file, and
631you're using an __END__ or __DATA__ cut mark, make sure to put an
632empty line there before the first Pod command.
cb1a09d0 633
8a93676d 634 __END__
cb1a09d0 635
8a93676d 636 =head1 NAME
cb1a09d0 637
8a93676d 638 Time::Local - efficiently compute time from local and GMT time
cb1a09d0 639
8a93676d
SB
640Without that empty line before the "=head1", many translators wouldn't
641have recognized the "=head1" as starting a Pod block.
cb1a09d0 642
8a93676d 643=head2 Hints for Writing Pod
1294c5d8 644
8a93676d 645=over
1294c5d8
JM
646
647=item *
d74e8afc 648X<podchecker> X<POD, validating>
1294c5d8 649
8a93676d
SB
650The B<podchecker> command is provided for checking Pod syntax for errors
651and warnings. For example, it checks for completely blank lines in
652Pod blocks and for unknown commands and formatting codes. You should
653still also pass your document through one or more translators and proofread
654the result, or print out the result and proofread that. Some of the
655problems found may be bugs in the translators, which you may or may not
656wish to work around.
1294c5d8
JM
657
658=item *
659
8a93676d 660If you're more familiar with writing in HTML than with writing in Pod, you
210b36aa 661can try your hand at writing documentation in simple HTML, and converting
8a93676d
SB
662it to Pod with the experimental L<Pod::HTML2Pod|Pod::HTML2Pod> module,
663(available in CPAN), and looking at the resulting code. The experimental
664L<Pod::PXML|Pod::PXML> module in CPAN might also be useful.
665
666=item *
667
668Many older Pod translators require the lines before every Pod
669command and after every Pod command (including "=cut"!) to be a blank
670line. Having something like this:
671
672 # - - - - - - - - - - - -
673 =item $firecracker->boom()
210b36aa 674
8a93676d
SB
675 This noisily detonates the firecracker object.
676 =cut
677 sub boom {
678 ...
679
680...will make such Pod translators completely fail to see the Pod block
681at all.
682
683Instead, have it like this:
684
685 # - - - - - - - - - - - -
210b36aa 686
8a93676d 687 =item $firecracker->boom()
210b36aa 688
8a93676d 689 This noisily detonates the firecracker object.
210b36aa 690
8a93676d 691 =cut
210b36aa 692
8a93676d
SB
693 sub boom {
694 ...
695
696=item *
697
698Some older Pod translators require paragraphs (including command
699paragraphs like "=head2 Functions") to be separated by I<completely>
700empty lines. If you have an apparently empty line with some spaces
701on it, this might not count as a separator for those translators, and
702that could cause odd formatting.
703
704=item *
1294c5d8 705
8a93676d
SB
706Older translators might add wording around an LE<lt>E<gt> link, so that
707C<LE<lt>Foo::BarE<gt>> may become "the Foo::Bar manpage", for example.
708So you shouldn't write things like C<the LE<lt>fooE<gt>
709documentation>, if you want the translated document to read sensibly
710-- instead write C<the LE<lt>Foo::Bar|Foo::BarE<gt> documentation> or
711C<LE<lt>the Foo::Bar documentation|Foo::BarE<gt>>, to control how the
712link comes out.
b74bceb9 713
1294c5d8
JM
714=item *
715
8a93676d
SB
716Going past the 70th column in a verbatim block might be ungracefully
717wrapped by some formatters.
1294c5d8
JM
718
719=back
720
cb1a09d0
AD
721=head1 SEE ALSO
722
8a93676d
SB
723L<perlpodspec>, L<perlsyn/"PODs: Embedded Documentation">,
724L<perlnewmod>, L<perldoc>, L<pod2html>, L<pod2man>, L<podchecker>.
4633a7c4 725
cb1a09d0 726=head1 AUTHOR
a0d0e21e 727
8a93676d 728Larry Wall, Sean M. Burke
a0d0e21e 729
8a93676d 730=cut