如何在 pod2html 中设置网站图标

How to setting a favicon in pod2html

我用 POD 记录了一些 perl 文件并用 pod2html 制作了一个网页。是否可以为此设置 favicon

=pod

=encoding UTF-8

=begin pod2html

<link rel="..." type="..." href="/...">

=end pod2html

=cut

但是我的 html 文件中没有关于这个图标的任何内容。

我把这张图片放在哪里了?可以直接放在perl文件里吗?

使用一点批处理脚本:

#!/bin/bash

pod2html my_pod_file.pl > my_html.html

sed -i '/<title/{ a <link rel="..." type="..." href="/..." />
; :label n; b label } my_html.html

sed -i '/<title/a <link ... ' my_html.html 也可以,但 sed 会在所有标题标签后添加一行。


如果您使用 </code> 而不是 <code>my_pod_file.pl</code> 而不是 <code>my_html.html,您可以像 ./my_script my_pod_file.pl my_html.html.[=19= 这样调用脚本]


您可以使用“ed”代替“sed”:

ed my_html.html << EOF
/<title/a
<link ...
.
wq
EOF

感谢ubuntuusers.de