Padre::Pod2HTML - A customised Pod to HTML for Padre


Padre documentation  | view source Contained in the Padre distribution.

Index


NAME

Top

Padre::Pod2HTML - A customised Pod to HTML for Padre

SYNOPSIS

Top

  # The quicker way
  $html = Padre::Pod2HTML->pod2html( $pod_string );

  # The slower way
  $parser = Padre::Pod2HTML->new;
  $parser->parse_string_document( $pod_string );
  $html = $parser->html;

DESCRIPTION

Top

Padre::Pod2HTML provides a central point for pod2html functionality inside of Padre.

Initially it just provides an internal convenience that converts Pod::Simple::XHTML from printing to STDOUT to capturing the HTML.

Currently the constructor does not take any options.

AUTHOR

Top

Adam Kennedy adamk@cpan.org Ahmad M. Zawawi ahmad.zawawi@gmail.com

SEE ALSO

Top

Padre

COPYRIGHT

Top


Padre documentation  | view source Contained in the Padre distribution.