in reply to perl POD
However, the POD that is displayed is in raw format without any translation of the POD escapes. So you would probably have to write the data to an intermediary file, or IO::Scalar object, and massage the data.#!/usr/bin/perl -w use strict; use Pod::Select; my $parser = new Pod::Select(); $parser->select("NAME"); $parser->parse_from_file("Module.pm", "-"); __END__
In the end it may be simpler to create your own selection routine, perhaps via Pod::Parser or Pod::Simple.
--
John.
|
|---|