【发布时间】:2017-05-01 17:22:21
【问题描述】:
考虑一个包含以下两个文件的项目。请注意,OtherTab.md 位于子目录中。
README.md
# This is the main page.
Main Page contents.
wiki/OtherTab.md
# This is another tab
Contents for another tab.
现在,我运行Doxygen -g 来生成Doxyfile。我将以下行添加到Doxyfile。
USE_MDFILE_AS_MAINPAGE = README.md
INPUT = . wiki
我想在Main Page 选项卡旁边添加一个名为Wiki 的选项卡,它指向文件wiki/OtherTab.md。
我该如何做到这一点?
我查看了this question 和this documentation,但都没有解决如何在 Doxygen 中实际创建一个新选项卡并将其指向通过处理特定 Markdown 文件生成的 html 的问题。
此外,我曾尝试在上一个问题中使用this answer,但不确定在tab 标记的url 属性中添加什么。
【问题讨论】:
标签: documentation markdown doxygen documentation-generation