如何在 Pod 和 perldoc 中使用 Unicode 字符?
我需要在我的 perl 文档中使用 utf-8 字符。 如果我使用:
perldoc MyMod.pm
我看到奇怪的字符。 如果我使用:
pod2text MyMod.pm
一切都很好。
我使用 Ubuntu/Debian。
$ locale
LANG=de_DE.UTF-8
LC_CTYPE="de_DE.UTF-8"
LC_NUMERIC="de_DE.UTF-8"
LC_TIME="de_DE.UTF-8"
LC_COLLATE="de_DE.UTF-8"
LC_MONETARY="de_DE.UTF-8"
LC_MESSAGES="de_DE.UTF-8"
LC_PAPER="de_DE.UTF-8"
LC_NAME="de_DE.UTF-8"
LC_ADDRESS="de_DE.UTF-8"
LC_TELEPHONE="de_DE.UTF-8"
LC_MEASUREMENT="de_DE.UTF-8"
LC_IDENTIFICATION="de_DE.UTF-8"
LC_ALL=de_DE.UTF-8
有关于在 Pod 中使用特殊字符的 HowTo 吗?
这是一个使用德语元音变音“Just a Test: äöüßäÖ”的小例子:
$ perldoc perl/MyMod.pm
<standard input>:72: warning: can't find character with input code 159
<standard input>:72: warning: can't find character with input code 150
MyMod(3) User Contributed Perl Documentation MyMod(3)
NAME
MyMod.pm - Just a Test: äöüÃÃÃ
perl v5.10.0 2008-10-16 MyMod(3)
I need to use utf-8 characters in my perl-documentation.
If I use:
perldoc MyMod.pm
I see strange characters. If I use:
pod2text MyMod.pm
everything is fine.
I use Ubuntu/Debian.
$ locale
LANG=de_DE.UTF-8
LC_CTYPE="de_DE.UTF-8"
LC_NUMERIC="de_DE.UTF-8"
LC_TIME="de_DE.UTF-8"
LC_COLLATE="de_DE.UTF-8"
LC_MONETARY="de_DE.UTF-8"
LC_MESSAGES="de_DE.UTF-8"
LC_PAPER="de_DE.UTF-8"
LC_NAME="de_DE.UTF-8"
LC_ADDRESS="de_DE.UTF-8"
LC_TELEPHONE="de_DE.UTF-8"
LC_MEASUREMENT="de_DE.UTF-8"
LC_IDENTIFICATION="de_DE.UTF-8"
LC_ALL=de_DE.UTF-8
Is there a HowTo about using special characters in Pod?
Here is a small example using german umlauts "Just a Test: äöüßÄÖ":
$ perldoc perl/MyMod.pm
<standard input>:72: warning: can't find character with input code 159
<standard input>:72: warning: can't find character with input code 150
MyMod(3) User Contributed Perl Documentation MyMod(3)
NAME
MyMod.pm - Just a Test: äöüÃÃÃ
perl v5.10.0 2008-10-16 MyMod(3)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
=encoding utf-8
作为文件中的第一个 POD 指令,并使用相当新的perldoc
(例如来自 5.10-maint 的)。 那么它应该可以工作。Use
=encoding utf-8
as the first POD directive in your file, and use a fairly recentperldoc
(for example from 5.10-maint). Then it should work.找到了这张 RT 票证...http://rt.cpan。 org/Public/Bug/Display.html?id=39000
这个“bug”似乎是 Perl 5.10 引入的,也许需要使用这个 pod2man --utf8。
Found this RT ticket.... http://rt.cpan.org/Public/Bug/Display.html?id=39000
This "bug" seems to be introduced with Perl 5.10 and perhaps this pod2man --utf8 needs to be used.
perldoc -t MyMod.pm
来自 perldoc 手册:
-t 使用 pod2text 而不是 Pod::Man 和 groff 显示 pod(-t 是 win32 上的默认值,除非指定 -n)
perldoc -t MyMod.pm
From the perldoc manual:
-t Display pod using pod2text instead of Pod::Man and groff (-t is the default on win32 unless -n is specified)