如何从 doxygen 生成的 html 文件中删除文件选项卡?

发布于 2024-11-29 03:57:07 字数 253 浏览 0 评论 0 原文

我一直在使用 doxygen 为我的项目生成 html 文档。我生成的文档包含一个文件选项卡。我怎样才能删除该文件选项卡?

除此之外,我还想删除所有指向代码页的超链接。提前致谢。

我想删除这部分文档

该类的文档是从以下文件生成的:

D:/xyx/entities/ClassA.h
D:/xyx/entities/ClassA.cxx

这里我有一个 ClassA.h 的超链接

I have been using doxygen to generate html document for my project. And my generated documents contain a files tab. How could I remove that files tab.?

Apart from that I also want to remove all hyperlinks that directs to a code page. Thanks in advance.

I want to remove this part of documentation

The documentation for this class was generated from the following files:

D:/xyx/entities/ClassA.h
D:/xyx/entities/ClassA.cxx

here I have a hyperlink for ClassA.h

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

我不在是我 2024-12-06 03:57:07

将以下行放入您的 Doxyfile 中:

 SHOW_FILES = NO

Put the following line into your Doxyfile:

 SHOW_FILES = NO
要走干脆点 2024-12-06 03:57:07

要删除文件选项卡,您可以自定义 Doxygen 使用的 html 布局。

  • 在 Doxyfile 所在的文件夹中使用 doxygen -l 生成默认布局文件,这将创建一个名为 DoxygenLayout.xml 的文件

  • 在生成的布局文件中,将 visible 更改为 no在下面的行:

  • 再次运行 doxygen,布局文件将从 Doxygen 中读取,无需更改 Doxyfile,只要它具有默认名称即可。

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.xml

  • In the generated layout file, change visible to no in the following line:
    <tab type="files" visible="yes"

  • Run doxygen again, the layout file will be read from Doxygen without having to change the Doxyfile as long as it has the default name.
难以启齿的温柔 2024-12-06 03:57:07
SHOW_FILES = NO

将从快速索引中删除文件页面,以从页面底部删除用于文档的源文件

SHOW_USED_FILES = NO 
SHOW_FILES = NO

would remove files page from Quick Index, to remove the source file used for the documentation from the bottom of the page use

SHOW_USED_FILES = NO 
素手挽清风 2024-12-06 03:57:07

答案很有帮助,但是 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文