summaryrefslogtreecommitdiff
path: root/pod/perlpodstyle.pod
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade podlators from version 4.10 to 4.11Steve Hay2018-07-031-12/+14
| | | | (This includes the former blead customization.)
* pods: Add L<> for links missing them; a couple nitsKarl Williamson2017-04-051-1/+1
|
* Update podlators to version 4.03Karen Etheridge2016-01-011-5/+7
|
* Fixed verbatim lines in POD over 79 charactersBrian Gottreu2013-06-221-2/+2
|
* Updated podlators to CPAN version 2.4.2Chris 'BinGOs' Williams2012-06-181-70/+27
| | | | | | | | | | | | | | | | | | | | | | [DELTA] 2012-06-01 Russ Allbery <rra@stanford.edu> * VERSION: podlators 2.4.2 released. * t/text-encoding.t: Remove the test of a POD document without an encoding. We previously tested that this interpreted the document as ISO 8859-1, but Pod::Simple behavior has changed so that the test started failing, plus Pod::Simple now warns about a missing =encoding. (#77553) 2012-05-30 Russ Allbery <rra@stanford.edu> * VERSION: podlators 2.4.1 released. * lib/Pod/Man.pm (parse_file): Override the Pod::Simple method to set output_fh to STDOUT if it's not already set. (#77530) * lib/Pod/Text.pm (parse_file): Likewise.
* Fixed repeated wordsWalt Mankowski2011-09-091-1/+1
|
* Improved perlpodstyle docs from tchristTom Christiansen2011-05-181-28/+71
|
* Update podlators to CPAN version 2.4.0Chris 'BinGOs' Williams2010-10-181-0/+295
The new perlpodstyle.pod has been located to pod/ Changes were necessary to mkppport because of a new dependency on Encode in podlators that stopped it being built before Encode was built. [DELTA] 2010-10-10 Russ Allbery <rra@stanford.edu> * VERSION: podlators 2.4.0 released. * scripts/pod2man: Remove the code to generate the #! line and supporting code and instead rely on ExtUtils::MakeMaker to handle that during package build. * scripts/pod2text: Likewise. * scripts/pod2man.PL: Renamed to pod2man. * scripts/pod2text.PL: Renamed to pod2text. * Makefile.PL: Remove PL_FILES section. * pod/perlpodstyle.pod: New style guide for POD documentation, split mostly from the NOTES section of the pod2man man page. * scripts/pod2man.PL: Remove NOTES section, now maintained as the separate perlpodstyle document. * Makefile.PL: Add perlpodstyle.1 to the generated man pages. * lib/Pod/Man.pm (cmd_para): Do not strip escaped trailing whitespace, such as that created by S<> at the end of a line, since the backslash is then taken by *roff as escaping the newline. Thanks, Kevin Ryde. * t/man.t: Test S<> at the end of lines. * lib/Pod/Man.pm (output): If the utf8 option is given, encode output in UTF-8 if there is no encoding layer. Now requires the Encode module. (start_document): Rather than forcibly change the PerlIO encoding layer, probe the PerlIO layers with protection for Perl versions without PerlIO and set a flag indicating whether to encode on the fly on output. * lib/Pod/Text.pm: Likewise. * Makefile.PL: Mark Encode as required. * t/man-perlio.t: Test Pod::Man output to a file handle with a PerlIO encoding layer already applied. * t/text-perlio.t: Likewise for Pod::Text.