petdance has asked for the wisdom of the Perl Monks concerning the following question:
I want to document _glarb_internals() in the same way as any other method, but I don't want it to appear when the user runs pod2html on the file. It's just clutter and is something they shouldn't be calling directly anyway.=head2 glarb() The C<glarb()> function takes care of all your glarbing needs. =cut sub glarb() { # Do the glarbing _glarb_internals(); } =head2 _glarb_internals() Does the real work of glarbing. =cut sub _glarb_internals() { # Do the interesting stuff }
Is there something I'm missing in POD?
xoxo,
Andy
%_=split/;/,".;;n;u;e;ot;t;her;c; ". # Andy Lester
'Perl ;@; a;a;j;m;er;y;t;p;n;d;s;o;'. # http://petdance.com
"hack";print map delete$_{$_},split//,q< andy@petdance.com >
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Secret POD docs
by merlyn (Sage) on May 07, 2001 at 17:55 UTC | |
by frag (Hermit) on May 07, 2001 at 19:49 UTC | |
by petdance (Parson) on May 07, 2001 at 19:37 UTC | |
|
Re: Secret POD docs
by Rhandom (Curate) on May 07, 2001 at 18:00 UTC | |
by petdance (Parson) on May 07, 2001 at 19:39 UTC | |
by merlyn (Sage) on May 07, 2001 at 19:43 UTC |