如何生成目录中 Perl 模块或脚本的 HTML 摘要?
是否有可用的工具可以在目录树中生成 perl 模块或脚本的 HTML 摘要列表?
鉴于
=head1 NAME
wibble.pl - does wibble actions
我希望看到类似的东西
<a href="docsforwibble">wibble.pl</a> - does wibble actions
<a href="docsforwobble">wobble.pl</a> - does wobble actions
Is there a tool available that can produce an HTML summary list of perl modules or scripts in a directory tree?
Given
=head1 NAME
wibble.pl - does wibble actions
I would like to see something like
<a href="docsforwibble">wibble.pl</a> - does wibble actions
<a href="docsforwobble">wobble.pl</a> - does wobble actions
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
pod2html --recurse --podpath
请参阅 perldoc pod2html
pod2html --recurse --podpath <dirname>
See perldoc pod2html
使用 Pod::Find 从 Pod::Find 可以轻松地找到一个="http://search.cpan.org/dist/Pod-Parser" rel="nofollow noreferrer">Pod::Parser 分发。
下面的脚本为它可以在我的
site/lib/CGI
下找到的任何内容创建一个基本索引文件。它的目的是作为演示。使用 pod2html 可能会更好,但这个脚本可能仍然有用。It is easy to whip one out using Pod::Find from the Pod::Parser distribution.
The script below creates a rudimentary index file for anything it can find under my
site/lib/CGI
. It is meant as a demonstration. You are probably better off withpod2html
, but this script might still be useful.