Tagged Questions
12
votes
8answers
4k views
What's the best way to document Perl code?
Any suggestion how I can document my Perl code? What do you use and what tools are available to help me?
Which module do you use to convert pod to html?
8
votes
3answers
508 views
Is there a WYSIWYG Perl Pod editor?
Is there an easy to use "what-you-see-is-what-you-get" editor for Pod available?
I'm not that used to the Pod syntax yet so having the option of writing the Pod and immediatly see what the output ...
6
votes
4answers
524 views
Are there any conventions for writing POD comments for Perl?
I was able to find a page from Safari Books Online that provides a template, but having never written POD comments, I'm not sure how good it is or if it is missing anything that might be considered ...
5
votes
5answers
232 views
Perl documentation (POD) browsers?
I'm looking for is a good on-screen POD reading experience.
For years, I've used perldoc or man running in an xterm to read Perl documentation on screen, and a small custom program built around ...
4
votes
2answers
70 views
What is the correct syntax for producing http links with custom text with pod2html?
The perlpod documentation tells me that I can link to URLs using
L<scheme:...> or L<text|scheme:...>, it even lists L<The Perl
Home Page|http://www.perl.org/> as an example.
The ...
4
votes
3answers
213 views
Is there really no better way to document perl code than POD?
I'm a perl programmer for a long time. But I always have problems with documentation in POD.
When I use POD comment in the code the code is difficult to read. When I use POD comments at the end of ...
4
votes
1answer
80 views
Is there a Perl module that can split one master Pod file into several views?
I want to write one Pod file for perlop and perlopref. My gut instinct is to say something like
=head1 PRECEDENCE
blah
=head1 OPERATORS
=head2 "X"
=for short
The double quote circumflex ...
4
votes
2answers
117 views
POD multilanguage documentation
Is there any way to write multilanguage documentation using POD? If no, what should I write it in (I already have POD documentation in English, so I will want to convert it and then translate)?
4
votes
2answers
2k views
How to create POD and use pod2usage in perl?
I want to create a POD for my own custom command and display the syntax for that using pod2usage() function..
Can anyone give me a simple example for it?
Regards,
Anandan
3
votes
3answers
295 views
How can I have link text with a URL in Pod's L<>?
The L<name> formatting code allows you to set the display text for the link if you're linking to other POD, as in L<Display Text|link_dest>, but this isn't allowed for L<scheme:...> ...
2
votes
2answers
127 views
Online Perl POD renderer
I seem to remember an "offical" site (perl.org or cpan.org) which had a POD previewer. One uploaded a file and it would display the contained POD as it would appear on CPAN. Does someone have this ...
2
votes
1answer
119 views
How can I get rid of empty lines Perl's Pod so they don't show up with Pod::Usage?
I have following pod which I used with getopt::long:
=head1 SYNOPSIS
foo [OPTION]... [URL]...
=head1 OPTIONS
=over 20
=item B<-h, --help>
Print a brief help message and exits.
=item ...
2
votes
2answers
134 views
How can I produce an HTML summary of Perl modules or scripts in a directory?
Is there a tool available that can produce an HTML summary list of perl modules or scripts in a directory tree?
Given
=head1 NAME
wibble.pl - does wibble actions
I would like to see something ...
1
vote
1answer
63 views
How to convert AsciiDoc to Perl POD?
How to convert manpage written in AsciiDoc lightweight markup language automatically into Perl's POD (Plain Old Documentation)?
Perhaps something that converts from DocBook to POD (the conversion ...
1
vote
1answer
40 views
How can I pass an array from weaver.ini to a Pod::Weaver plugin
So it appears that in order to pass something in weaver.ini the plugin itself requires a Moose attribute. So if I have something like this in weaver.ini
[Acknowledgements]
contributors = 'test foo' ...
1
vote
1answer
96 views
Which Perl module do I use to convert Pod to HTML?
I need to convert Pod to HTML. There are number of Pod::HTML and Pod::Simple::* modules. Which one is the one I should use?
1
vote
2answers
96 views
Why won't this regex remove final whitespace from Pod::Usage text?
I am working on a module that relies on Pod::Usage to parse the calling script's POD and then send usage, help, and man text to a scalar variable. I needed to remove the final whitespace from that ...
1
vote
1answer
108 views
Abstract classes and Pod::Coverage
I've recently started to try to use Dist::Zilla for maintaining Path::Class. I added the [PodCoverageTests] plugin, and it's reporting some failures in the Path::Class::Entity class, which is the ...
1
vote
2answers
189 views
How do I stop pod2html from treating “=head2 open() foo” as a function definition?
I have some POD that looks like
=head2 C<close() on unopened filehandle %s>
=over
=item C<Yer tryna close() %s what ain't been opened yet>
=back
The pod2html command turns it into
...
0
votes
2answers
73 views
perlpod: missing text issue
I'm having a issue where pod2usage is missing text, and I have tried to fix it by:
converting newlines
rewriting it
checking it with podchecker
but none of these things help to resolve or hint to ...
0
votes
2answers
120 views
When are blank lines needed in Perl POD documentation
I have noticed that a lot of Pod has blank lines between the lines such as
code
=head1 DESCRIPTION
text
Are these blank lines strictly needed, do specific parsers get upset if it is ...
0
votes
3answers
300 views
How do I get Perl POD in string and print it in page?
I have a POD document. Now, I want to convert that POD to a parsed section like usage/description and get it in a string.
Why not pod2usage?
This doesn't help me to get the output in string but in ...