【发布时间】:2013-06-10 17:09:16
【问题描述】:
环境: Doxygen 版本 1.7.6.1 操作系统:Ubuntu 12.04
我设置了 doxygen 来解析一些 c/c++ 文件并生成 RTF:
GENERATE_RTF = YES
# If the COMPACT_RTF tag is set to YES Doxygen generates more compact
# RTF documents. This may be useful for small projects and may help to
# save some trees in general.
COMPACT_RTF = YES
# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
# will contain hyperlink fields. The RTF file will
# contain links (just like the HTML output) instead of page references.
# This makes the output suitable for online browsing using WORD or other
# programs which support those fields.
# Note: wordpad (write) and others do not support links.
RTF_HYPERLINKS = NO
我将 RTF_HYPERLINKS 设置为“NO”以禁用超链接,但我仍然得到它们:
Class Index
{tc "Hierarchical Index"} Class Hierarchy
This inheritance list is sorted roughly, but not completely, alphabetically:
什么是导致 Doxygen 不生成超链接或引用的正确设置?
【问题讨论】:
-
也许 AUTOLINK_SUPPORT = NO
-
#Toby 感谢您的回复。该参数不会关闭超链接。但是,当我搜索它时,我意识到我的 doxygen 版本已经过时(是 1.6.3)。我更新到 v1.8.4 并且 RTF_HYPERLINKS=NO,超链接消失了。