Delete link to source code in doxygen?

I want my doxygen output to only display documentation, not displaying any source code. I know that you can hide the file view tab so that the user can only view namespace / class , and this effectively hides the source code.

However, I have many functions in the top-level namespace that are organized only by a file, so I want to keep the ability to browse by file name. I just want to remove the link inside the doc file that says "Go to the source code of this file." Is there any way to remove this link?

Of course, I could write a script that parsed all the HTML output files and deleted any file ending in _source.html , and also removes lines of this kind from the remaining HTML:

 <p><a href="FILENAME_8h_source.html">Go to the source code of this file.</a></p> 

However, I was hoping there would be a cleaner way to do this.

+7
file doxygen
source share
1 answer

In the configuration file, set the following parameters:

 SOURCE_BROWSER = NO VERBATIM_HEADERS = NO 

This still indicates the namespaces in each file, but does not include the source code.

+14
source share

All Articles