NAME
Pod::LOL - Transform POD into a list of lists
VERSION
Version 0.02
SYNOPSIS
Transform POD into a list of lists (lol)
use Pod::LOL;
my $lol = Pod::LOL->new->parse_file($path)->root;
$lol contains:
[
[
"head1",
"NAME"
],
[
"Para",
"Pod::LOL - Transform POD into a list of lists"
],
[
"head1",
"VERSION"
],
...
],
Inline (Debugging)
perl -Ilib -MPod::LOL -MMojo::Util=dumper -E "say dumper(Pod::LOL->new->parse_file('lib/Pod/LOL.pm')->root)"
DESCRIPTION
This module takes a path a extracts the pod information into a list of lists.
METHODS
This module overwrites the following methods from Pod::Simple:
_handle_element_start
Executed when a new pod element starts.
_handle_text
Executed for each text element.
_handle_element_end
Executed when a pod element ends.
SEE ALSO
AUTHOR
Tim Potapov, <tim.potapov[AT]gmail.com>
BUGS
Please report any bugs or feature requests to bug-pod-lol at rt.cpan.org
, or through the web interface at https://rt.cpan.org/NoAuth/ReportBug.html?Queue=Pod-LOL. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Pod::LOL
You can also look for information at:
RT: CPAN's request tracker (report bugs here)
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
LICENSE AND COPYRIGHT
This software is Copyright (c) 2022 by Tim Potapov.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)