문제

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