如何从 doxygen 生成的 html 文件中删除文件选项卡?
我一直在使用 doxygen 为我的项目生成 html 文档。我生成的文档包含一个文件选项卡。我怎样才能删除该文件选项卡?
除此之外,我还想删除所有指向代码页的超链接。提前致谢。
我想删除这部分文档
该类的文档是从以下文件生成的:
D:/xyx/entities/ClassA.h
D:/xyx/entities/ClassA.cxx
这里我有一个 ClassA.h 的超链接
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
将以下行放入您的 Doxyfile 中:
Put the following line into your Doxyfile:
要删除文件选项卡,您可以自定义 Doxygen 使用的 html 布局。
在 Doxyfile 所在的文件夹中使用 doxygen -l 生成默认布局文件,这将创建一个名为 DoxygenLayout.xml 的文件
在生成的布局文件中,将
visible
更改为no
在下面的行:To remove the files tab you can customize the html layout used by Doxygen.
Generate a default layout file with
doxygen -l
in the folder where your Doxyfile is, this will create a file named DoxygenLayout.xmlIn the generated layout file, change
visible
tono
in the following line:<tab type="files" visible="yes"
将从快速索引中删除文件页面,以从页面底部删除用于文档的源文件
would remove files page from Quick Index, to remove the source file used for the documentation from the bottom of the page use
答案很有帮助,但是 EXTRACT_ALL 选项可以为我生成类列表和文件列表。
尝试禁用 EXTRACT_ALL。这对我有用
The answers are helpful but there the EXTRACT_ALL option that generates the Class List and File list for me.
Try disabling EXTRACT_ALL. It worked for me