的手册页txt2html
说:
--make_links
Should we try to build links? If this is false, then the links dictionaries are not consulted and only structural text-to-HTML conversion is
done. (default: true)
我想将其设置为 false。我该怎么做呢?我找不到此信息,并尝试了几种猜测。
答案1
布尔选项可以通过在它们前面加上
no
[...]
然后该手册引用了 Perl 包Getopt::Long
。在它是手册中,您可以阅读以下有关布尔选项的内容:
该选项不带参数,可以通过在其前面加上
no
or来否定no-
。 [...]
这意味着要反转选项的含义--make-links
,请使用--no-make-links
或--nomake-links
。