pod2html中文处理的bug

pod2html中文处理的bug

pod2html中文处理的bug
pod2html中文处理的bug
最近使用pod写一些文档。发现处理中文的时候有问题。

问题描述如下:

当pod2html生成索引连接的时候根据=head1 [头] 字节的个数生成相等的"_"个数[猜想]。
结果对相等的=head部分出现连接到屏幕错误的问题。

后来我搜索了一下:
发现http://mptk.chunzi.org/中使用了pod格式,并且也存在这个问题。

"参与办法" 找不到屏幕上的位置

我使用的activeperl5.84版本

呵呵,pod2html...
呵呵,pod2html 写出来的时候适合英文的用户的,所以你拿到源代码:
[quote]
sub anchorify {
my ($anchor) = @_;
$anchor = htmlify($anchor);
$anchor =~ s/\W/_/g;
return $anchor;
}
[/quote]

把其中的 [quote]$anchor =~ s/\W/_/g;[/quote]去掉即可
Thanks .确实如...
Thanks .确实如此.好用了.