logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

MetaCPAN::Client::Pod - A Pod object

Attributes

request
       A MetaCPAN::Client::Request object (created in MetaCPAN::Client)

   name
       The name of the module (probably always the value passed to the pod() method)

   url_prefix
       Prefix to be passed through the url_prefix query parameter to the 'pod' endpoint

   x_pod
       The raw pod extracted from the file.

   html
       Formatted as an HTML chunk (No <html>...<body>)

   x_markdown
       Converted to Markdown.

   plain
       Formatted as plain text.

       Get the plaintext version of the documentation

         $pod = MetaCPAN::Client->new->pod( "MetaCPAN::Client" );
         print $pod->plain;

Authors

       •   Sawyer X <xsawyerx@cpan.org>

       •   Mickey Nasriachi <mickey@cpan.org>

Description

       A MetaCPAN pod entity object.

Name

       MetaCPAN::Client::Pod - A Pod object

Synopsis

         use strict;
         use warnings;
         use MetaCPAN::Client;

         my $pod = MetaCPAN::Client->new->pod('Moo');

         print $pod->html;

Version

       version 2.033000

See Also