> .oO(Hmmm, maybe emulate perldoc itself - getting the wanted behaviour by overloading one/some of the Pod::Perldoc::* methods as appropriate i.e. iff called with -f & 2 args and then handing off to perldoc itself...)

If your thinking about emulating perldoc, I'm wondering what you really need to realize...

Just a suggestion: The book Perl Hacks Hack #45 describes how to implement docstrings using Attribute::Handlers. (with a package "Attribute::Docstring" which unfortunately is not on CPAN* ) This allone should work with just compiling the code, and you can introspect all subs and package-vars directly!

Alternatively you may add a simple static parser which reads the docstrings like sub name :Doc( 'documentation text ...' ) { } without even compiling.

For me, this looks much easier than emulating perldoc.

Cheers Rolf

UPDATE:
(*) But here perl_hacks_examples.tar.gz /object_hacks/add_information_with_attributes/lib/Attribute/Docstring.pm


In reply to Re: POD, come let me see thee, I have thee not, but still I clutch thee by LanX
in thread POD, come let me see thee, I have thee not, but still I clutch thee by Bloodnok

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.