當寫入perlpod將被導出爲HTML的文檔時,我可以將生成的HTML文件的標題嵌入到POD指令中嗎?我可以在perlpod文檔中嵌入自定義標題嗎?
我希望能夠使用pod2html
命令將多個POD文本文件轉換爲HTML,並且不希望在命令行上給出--title="My Title"
參數。
例如,這裏是perlpod格式的文本文件:
=pod
=head1 This is a heading
This is some text. I'd like to set the title of this document in the resulting HTML file.
=cut
當我將其轉換爲HTML,pod2html給出了一個關於那裏是沒有標題警告:
$ pod2html test.txt > test.html
/usr/bin/pod2html: no title for test.txt
在結果HTML文件,標題設置爲文件名(test.txt):
<?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>test.txt</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rev="made" href="mailto:[email protected]" />
</head>
<body style="background-color: white">
<p><a name="__index__"></a></p>
<!-- INDEX BEGIN -->
<ul>
<li><a href="#this_is_a_heading_">This is a heading.</a></li>
</ul>
<!-- INDEX END -->
<hr />
<p>
</p>
<hr />
<h1><a name="this_is_a_heading_">This is a heading.</a></h1>
<p>This is some text. I'd like to set the title of this document.</p>
</body>
</html>
我想查找aw AY有perpod文件中給出,也許這樣的指令標題:
=title This is my custom title
在Perl文檔,我看到的文檔標題是很好的設置。這一切都是在沒有文檔標題的情況下完成的嗎?