How do I get Pod::Simple to extract pod from its containing file?

2013-01-26 Thread Karl Williamson
With Pod::Parser, you just do parse_from_file($in_fh, $out_fh) and it outputs the pod to $out_fh. Pod::Simple has a method of the same name which is supposed to emulate the Pod::Parser method, but when I run it, nothing is output.

Re: How do I get Pod::Simple to extract pod from its containing file?

2013-01-26 Thread David E. Wheeler
On Jan 26, 2013, at 8:49 AM, Karl Williamson pub...@khwilliamson.com wrote: With Pod::Parser, you just do parse_from_file($in_fh, $out_fh) and it outputs the pod to $out_fh. Pod::Simple has a method of the same name which is supposed to emulate the Pod::Parser method, but when I run

Re: How do I get Pod::Simple to extract pod from its containing file?

2013-01-26 Thread Karl Williamson
On 01/26/2013 02:23 PM, Russ Allbery wrote: Karl Williamson pub...@khwilliamson.com writes: With Pod::Parser, you just do parse_from_file($in_fh, $out_fh) and it outputs the pod to $out_fh. Pod::Simple has a method of the same name which is supposed to emulate the Pod::Parser

Re: How do I get Pod::Simple to extract pod from its containing file?

2013-01-26 Thread Karl Williamson
On 01/26/2013 07:44 PM, Russ Allbery wrote: Karl Williamson pub...@khwilliamson.com writes: On 01/26/2013 02:23 PM, Russ Allbery wrote: Karl Williamson pub...@khwilliamson.com writes: With Pod::Parser, you just do parse_from_file($in_fh, $out_fh) and it outputs the pod to