Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
PODをHTMLに変換する
[go: Go Back, main page]

PODをHTMLに変換する


 Pod::HtmlEasyモジュールを使うと簡単にPOD(Plain Old Document)形式をHTMLに変換できます。
use strict;
use Pod::HtmlEasy;

my $podhtml = Pod::HtmlEasy->new();
my $html = $podhtml->pod2html(
	'C:\Perl\lib\NET\POP3.pm',
	'',
	basic_entities => 1,
);

print $html;

関連項目

関数のヘルプを見る
モジュールのヘルプを見る
モジュールのソースを見る