1MetaCPAN::API::POD(3) User Contributed Perl DocumentationMetaCPAN::API::POD(3)
2
3
4
6 MetaCPAN::API::POD - POD information for MetaCPAN::API
7
9 version 0.51
10
12 This role provides MetaCPAN::API with fetching POD information about
13 modules and distribution releases.
14
16 pod
17 my $result = $mcpan->pod( module => 'Moose' );
18
19 # or
20 my $result = $mcpan->pod(
21 author => 'DOY',
22 release => 'Moose-2.0201',
23 path => 'lib/Moose.pm',
24 );
25
26 Searches MetaCPAN for a module or a specific release and returns the
27 POD.
28
29 Content type can also be specified, like so:
30
31 my $result = $mcpan->pod( module => 'Moose', 'content-type' => 'x-pod' );
32
34 Sawyer X <xsawyerx@cpan.org>
35
37 This software is copyright (c) 2011 by Sawyer X.
38
39 This is free software; you can redistribute it and/or modify it under
40 the same terms as the Perl 5 programming language system itself.
41
42
43
44perl v5.32.1 2021-01-27 MetaCPAN::API::POD(3)