summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorCasey R. Tweten <crt@kiski.net>2000-11-16 07:02:47 -0500
committerJarkko Hietaniemi <jhi@iki.fi>2000-11-16 23:21:31 +0000
commit7a29f3c976427324c7799a40d0aae90fc45a5dcc (patch)
tree8bc44772aa56e0599d7b00dd97ccd5b48e0e0a64 /lib
parent9e20856c56d19493c4f213e21b24ee83ac38bf1f (diff)
downloadperl-7a29f3c976427324c7799a40d0aae90fc45a5dcc.tar.gz
Re: [p5p] [PATCH perlpod.pod] Digging into the =head
Message-ID: <Pine.OSF.4.21.0011161200410.700-100000@home.kiski.net> p4raw-id: //depot/perl@7716
Diffstat (limited to 'lib')
-rw-r--r--lib/Pod/Checker.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Pod/Checker.pm b/lib/Pod/Checker.pm
index 37ed68f873..35d0186a99 100644
--- a/lib/Pod/Checker.pm
+++ b/lib/Pod/Checker.pm
@@ -150,8 +150,8 @@ C<"">.
=item * Unknown command "I<CMD>"
An invalid POD command has been found. Valid are C<=head1>, C<=head2>,
-C<=over>, C<=item>, C<=back>, C<=begin>, C<=end>, C<=for>, C<=pod>,
-C<=cut>
+C<=head3>, C<=head4>, C<=over>, C<=item>, C<=back>, C<=begin>, C<=end>,
+C<=for>, C<=pod>, C<=cut>
=item * Unknown interior-sequence "I<SEQ>"
@@ -355,6 +355,8 @@ my %VALID_COMMANDS = (
'cut' => 1,
'head1' => 1,
'head2' => 1,
+ 'head3' => 1,
+ 'head4' => 1,
'over' => 1,
'back' => 1,
'item' => 1,