質問

I'm using Doxygen for generating documentation in my programming projects. And while I find it quite easy to configure and use I can't seem to find a way to hide the source references it adds to the HTML output.

I'm using these two directives in the configuration file:

SOURCE_BROWSER = NO
VERBATIM_HEADERS = NO

But it only seems to hide the "Definition at line of file ."

What I want removed is what's in the red rectangle below:

enter image description here

Is there a directive to also hide the source code it references? (Other than doing the hack'ish thing and remove it with CSS or jQuery)

役に立ちましたか?

解決

Make sure your setting on INLINE_SOURCES is set to NO.

Description from the manual - it looks like you have this YES

Setting the INLINE_SOURCES tag to YES will include the body of functions, classes and enums directly into the documentation.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top