Sha256: fd621df20e493129189ac4f8a786a30b939f99af3f1149b5d58c016c363f023d
Contents?: true
Size: 363 Bytes
Versions: 13
Compression:
Stored size: 363 Bytes
Contents
#!/usr/bin/env perl use strict; use Pod::Simple::XHTML 3.11; my $p = Pod::Simple::XHTML->new; $p->html_header(''); $p->html_footer(''); $p->perldoc_url_prefix('https://metacpan.org/pod/'); $p->anchor_items(1); $p->strip_verbatim_indent(sub { my $lines = shift; (my $indent = $lines->[0]) =~ s/\S.*//; return $indent; }); $p->parse_from_file(shift);
Version data entries
13 entries across 13 versions & 2 rubygems