Automatic document generation

Automatic document generation

am 15.11.2007 03:41:02 von howa

Hello,

Anyone is using automatic document generation in Perl (like Javadoc,
which generate HTML pages for API references)

Any suggestions?

Re: Automatic document generation

am 15.11.2007 04:08:37 von 1usa

howa wrote in news:25a3dadf-c212-452f-ac08-
46f9fbdb6da0@s19g2000prg.googlegroups.com:

> Anyone is using automatic document generation in Perl (like Javadoc,
> which generate HTML pages for API references)
>
> Any suggestions?

perldoc perlpod

--
A. Sinan Unur <1usa@llenroc.ude.invalid>
(remove .invalid and reverse each component for email address)
clpmisc guidelines:

Re: Automatic document generation

am 15.11.2007 10:06:44 von Sherm Pendley

"A. Sinan Unur" <1usa@llenroc.ude.invalid> writes:

> howa wrote in news:25a3dadf-c212-452f-ac08-
> 46f9fbdb6da0@s19g2000prg.googlegroups.com:
>
>> Anyone is using automatic document generation in Perl (like Javadoc,
>> which generate HTML pages for API references)
>>
>> Any suggestions?
>
> perldoc perlpod

Also:

perldoc pod2html
perldoc pod2latex
perldoc pod2man
perldoc pod2text

sherm--

--
WV News, Blogging, and Discussion: http://wv-www.com
Cocoa programming in Perl: http://camelbones.sourceforge.net

Re: Automatic document generation

am 15.11.2007 15:56:55 von Michele Dondi

On Thu, 15 Nov 2007 04:06:44 -0500, Sherman Pendley
wrote:

>"A. Sinan Unur" <1usa@llenroc.ude.invalid> writes:
>
>> howa wrote in news:25a3dadf-c212-452f-ac08-
>> 46f9fbdb6da0@s19g2000prg.googlegroups.com:
>>
>>> Anyone is using automatic document generation in Perl (like Javadoc,
>>> which generate HTML pages for API references)
>>>
>>> Any suggestions?
>>
>> perldoc perlpod
>
>Also:
>
> perldoc pod2html
> perldoc pod2latex
> perldoc pod2man
> perldoc pod2text

In addition to good ol' POD, at the following link you'll find some
pointers to alternatives, including a way to use Doxygen with Perl and
POD:

http://perlmonks.org/?node_id=604671


Michele
--
{$_=pack'B8'x25,unpack'A8'x32,$a^=sub{pop^pop}->(map substr
(($a||=join'',map--$|x$_,(unpack'w',unpack'u','G^ ..'KYU;*EVH[.FHF2W+#"\Z*5TI/ER 256),7,249);s/[^\w,]/ /g;$ \=/^J/?$/:"\r";print,redo}#JAPH,

Re: Automatic document generation

am 15.11.2007 16:07:06 von paduille.4061.mumia.w+nospam

On 11/14/2007 08:41 PM, howa wrote:
> Hello,
>
> Anyone is using automatic document generation in Perl (like Javadoc,
> which generate HTML pages for API references)
>
> Any suggestions?
>

You can use Pod::Html to help with this.