perldoc -f works for built-in Perl functions. I'm wondering if there is a tool out there for pulling up a pod entry for a function in my own module. Thanks.

perlfunc is treated specially by the tools, it's not a general-purpose solution at work there. Although there is Pod::Select, that's deprecated in the core now, and it seems to me that Pod-Simple doesn't have a direct replacement. A couple of possible solutions are: I haven't tried them, but on CPAN there's Pod::Simple::Select and Pod::Section (sadly, both modules don't appear to have a decent test suite). Lower-level would be to have a look at how the select method in Pod::Usage works (that module could also be used in a hacky solution by redirecting its output), or if you want to write something custom, I've used Pod::Simple::SimpleTree (example).


In reply to Re: Tool for pulling up documentation for individual functions in a module? by haukex
in thread Tool for pulling up documentation for individual functions in a module? by nysus

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.