in reply to Pod::Master
My core docs are not in 'pod' and not in 'Pod'. They are in 'pods' which is not matched by the regex. To make it work again, I had to change the code like this:if( $modulename =~ /^[Pp]od::(perl[a-z\d]*)/ ) { $Perldoc{$1} = $filename;
if( $modulename =~ /^[Pp]od[s]?::(perl[a-z\d]*)/ ) { $Perldoc{$1} = $filename;
|
---|