Movatterモバイル変換


[0]ホーム

URL:


Pod::Checker
(source,CPAN)
version 1.77
You are viewing the version of this documentation from Perl 5.41.1. This is a development version of Perl.

CONTENTS

#NAME

Pod::Checker - check pod documents for syntax errors

#SYNOPSIS

use Pod::Checker;$syntax_okay = podchecker($filepath, $outputpath, %options);my $checker = Pod::Checker->new(%options);$checker->parse_from_file($filepath, \*STDERR);

#OPTIONS/ARGUMENTS

$filepath is the input POD to read and$outputpath is where to write POD syntax error messages. Either argument may be a scalar indicating a file-path, or else a reference to an open filehandle. If unspecified, the input-file it defaults to\*STDIN, and the output-file defaults to\*STDERR.

#podchecker()

This function can take a hash of options:

#-warnings =>val

Turn warnings on/off.val is usually 1 for on, but higher values trigger additional warnings. See"Warnings".

#-quiet =>val

Ifval is true, do not print any errors/warnings.

#DESCRIPTION

podchecker will perform syntax checking of Perl5 POD format documentation.

Curious/ambitious users are welcome to propose additional features they wish to see inPod::Checker andpodchecker and verify that the checks are consistent withperlpod.

The following checks are currently performed:

#DIAGNOSTICS

#Errors

#Warnings

These may not necessarily cause trouble, but indicate mediocre style.

#Hyperlinks

There are some warnings with respect to malformed hyperlinks:

Note that the line number of the error/warning may refer to the line number of the start of the paragraph in which the error/warning exists, not the line number that the error/warning is on. This bug is present in errors/warnings related to formatting codes.This should be fixed.

#RETURN VALUE

podchecker returns the number of POD syntax errors found or -1 if there were no POD commands at all found in the file.

#EXAMPLES

See"SYNOPSIS"

#SCRIPTS

Thepodchecker script that comes with this distribution is a lean wrapper around this module. See the online manual with

podchecker -helppodchecker -man

#INTERFACE

While checking, this module collects document properties, e.g. the nodes for hyperlinks (=headX,=item) and index entries (X<>). POD translators can use this feature to syntax-check and get the nodes in a first pass before actually starting to convert. This is expensive in terms of execution time, but allows for very robust conversions.

Since v1.24 thePod::Checker module uses only thepoderror method to print errors and warnings. The summary output (e.g. "Pod syntax OK") has been dropped from the module and has been included inpodchecker (the script). This allows users ofPod::Checker to control completely the output behavior. Users ofpodchecker (the script) get the well-known behavior.

v1.45 inherits fromPod::Simple as opposed to all previous versions inheriting from Pod::Parser. Donot use Pod::Simple's interface when using Pod::Checker unless it is documented somewhere on this page. I repeat, DONOT USE POD::SIMPLE'S INTERFACE.

The following list documents the overrides to Pod::Simple, primarily to makePod::Coverage happy:

#end_B
#end_C
#end_Document
#end_F
#end_I
#end_L
#end_Para
#end_S
#end_X
#end_fcode
#end_for
#end_head
#end_head1
#end_head2
#end_head3
#end_head4
#end_item
#end_item_bullet
#end_item_number
#end_item_text
#handle_pod_and_cut
#handle_text
#handle_whiteline
#hyperlink
#scream
#start_B
#start_C
#start_Data
#start_F
#start_I
#start_L
#start_Para
#start_S
#start_Verbatim
#start_X
#start_fcode
#start_for
#start_head
#start_head1
#start_head2
#start_head3
#start_head4
#start_item_bullet
#start_item_number
#start_item_text
#start_over
#start_over_block
#start_over_bullet
#start_over_empty
#start_over_number
#start_over_text
#whine
#Pod::Checker->new( %options )

Return a reference to a new Pod::Checker object that inherits from Pod::Simple and is used for calling the required methods later. The following options are recognized:

-warnings => num Print warnings ifnum is true. The higher the value ofnum, the more warnings are printed. Currently there are only levels 1 and 2.

-quiet => num Ifnum is true, do not print any errors/warnings. This is useful when Pod::Checker is used to munge POD code into plain text from within POD formatters.

#$checker->poderror( @args )
#$checker->poderror( {%opts}, @args )

Internal method for printing errors and warnings. If no options are given, simply prints "@_". The following options are recognized and used to form the output:

-msg

A message to print prior to@args.

-line

The line number the error occurred in.

-file

The file (name) the error occurred in. Defaults to the name of the current file being processed.

-severity

The error level, should be 'WARNING' or 'ERROR'.

#$checker->num_errors()

Set (if argument specified) and retrieve the number of errors found.

#$checker->num_warnings()

Set (if argument specified) and retrieve the number of warnings found.

#$checker->name()

Set (if argument specified) and retrieve the canonical name of POD as found in the=head1 NAME section.

#$checker->node()

Add (if argument specified) and retrieve the nodes (as defined by=headX and=item) of the current POD. The nodes are returned in the order of their occurrence. They consist of plain text, each piece of whitespace is collapsed to a single blank.

#$checker->idx()

Add (if argument specified) and retrieve the index entries (as defined byX<>) of the current POD. They consist of plain text, each piece of whitespace is collapsed to a single blank.

#$checker->hyperlinks()

Retrieve an array containing the hyperlinks to things outside the current POD (as defined byL<>).

Each is an instance of a class with the following methods:

#line()

Returns the approximate line number in which the link was encountered

#type()

Returns the type of the link; one of:"url" for things likehttp://www.foo,"man" for man pages, or"pod".

#page()

Returns the linked-to page or url.

#node()

Returns the anchor or node within the linked-to page, or an empty string ("") if none appears in the link.

#AUTHOR

Please report bugs usinghttp://rt.cpan.org.

Brad Appleton <bradapp@enteract.com> (initial version), Marek Rouchal <marekr@cpan.org>, Marc Green <marcgreen@cpan.org> (port to Pod::Simple) Ricardo Signes <rjbs@cpan.org> (more porting to Pod::Simple) Karl Williamson <khw@cpan.org> (more porting to Pod::Simple)

Based on code forPod::Text::pod2text() written by Tom Christiansen <tchrist@mox.perl.com>

Perldoc Browser is maintained by Dan Book (DBOOK). Please contact him via theGitHub issue tracker oremail regarding any issues with the site itself, search, or rendering of documentation.

The Perl documentation is maintained by the Perl 5 Porters in the development of Perl. Please contact them via thePerl issue tracker, themailing list, orIRC to report any issues with the contents or format of the documentation.


[8]ページ先頭

©2009-2025 Movatter.jp