我使用哪个 Perl 模块将 Pod 转换为 HTML?
我需要将 Pod 转换为 HTML。有许多 Pod::HTML 和 Pod::Simple::* 模块。我应该使用哪一款?
I need to convert Pod to HTML. There are number of Pod::HTML and Pod::Simple::* modules. Which one is the one I should use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简短的答案是 Pod::Simple::XHTML。它生成有用且简洁的 HTML 输出。您可以通过查看 http://metacpan.org 上的 html 源代码来查看输出示例。
它还可以与 Pod::Simple::HTMLBatch 配合使用,如果您正在转换,您应该检查一下多个文件。请注意,Pod::Simple::HTMLBatch 的默认值是 Pod::Simple::HTML。但 Pod::Simple 的维护者 David Wheeler 建议使用 Pod::Simple::XHTML。
The short answer is Pod::Simple::XHTML. It produces useful yet concise HTML output. You can see an example of the output by viewing the html source at http://metacpan.org.
It also works with Pod::Simple::HTMLBatch which you should check out if you are converting more than one file. Note that the default for Pod::Simple::HTMLBatch is Pod::Simple::HTML. But the maintainer of Pod::Simple, David Wheeler, recommends using Pod::Simple::XHTML.