3

I noticed that my pod links in my WITH section do not work. I looked to see the link was just typoed but clicking the source show's it's not, and that the Pod is there. Why does my pod not work on metacpan.org or search.cpan.org (it appears to with perldoc)?

update: problem refuses to show itself after fixing

Jonas
  • 121,568
  • 97
  • 310
  • 388
xenoterracide
  • 16,274
  • 24
  • 118
  • 243
  • There's nothing wrong with the links; it seems the POD on the destination module pages is not rendering. – friedo Aug 14 '12 at 19:31

1 Answers1

3

If I understand the problem correctly, I think this is it: you have the following in your META.yml.

no_index:
  file:
    - perlcritic.rc
  namespace:
    - Business::CyberSource::Request::Role
    - Business::CyberSource::Response::Role
    - Business::CyberSource::Role

This tells the CPAN not to index your POD. MetaCPAN and search.cpan hide them from the list as well.

zostay
  • 3,985
  • 21
  • 30